Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bbonkr/sample.azure.communication.services.chat
https://github.com/bbonkr/sample.azure.communication.services.chat
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bbonkr/sample.azure.communication.services.chat
- Owner: bbonkr
- Created: 2021-05-18T01:22:08.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-07-10T12:03:37.000Z (over 3 years ago)
- Last Synced: 2024-04-09T21:56:09.078Z (7 months ago)
- Language: TypeScript
- Size: 1.01 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Azure Communication Services Chat
## References
* [Chat SDK overview](https://docs.microsoft.com/ko-kr/azure/communication-services/concepts/chat/sdk-features)
* [Azure-Sample/communication-services-web-chat-hero](https://github.com/Azure-Samples/communication-services-web-chat-hero)## Run
```bash
$ cd src/Sample.Chat
$ dotnet run
```![](./images/screen-001.jpeg)
## Docker
### build
```bash
$ docker build . -t your-name/app-name:tag
```### Run
```bash
# create files directory
$ mkdir files
# run docker container
$ docker run -d \
--name sample-chat
-e TZ=Asia/Seoul
-e ASPNETCORE_ENVIRONMENT=Production
-e ASPNETCORE_URLS=http://+:5000
-e ConnectionStrings__Default=
-e ConnectionStrings__AzureCommunicationServices=
-e App__Title=Chat App
-e App__Description=Sample for Azure Communication Services Chat
-v ./files:/files
your-name/app-name:tag
```