Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```