Create an Azure account with an active subscription. For details, see Create an account for free
Install Node.js (12.12.0 recommended).
Install Postman
Install Docker
Create an Azure Communication Services resource. For details, see Create an Azure Communication Resource
CREATE Service Bus (Standart SKU, sessions should be supported). For details, see Create Service Bus
CREATE 2 queues in Service Bus with sessions enabled: users
and threadcreated
Create file prod.env >>>
COMMUNICATION_SERVICES_CONNECTION_STRING=PUT_HERE_YOUR_COMMUNICATION_SERVICES_CONNECTION_STRING
COMMUNICATION_SERVICES_ENDPOINT_URL=PUT_HERE_COMMUNICATION_SERVICES_ENDPOINT_URL
SERVICE_BUS_CONNECTION_STRING=PUT_HERE_SERVICE_BUS_CONNECTION_STRING
PORT=8000
docker-compose up --build
ENVIRONMENT:
Define and store your connections strings, see how here
COMMUNICATION_SERVICES_CONNECTION_STRING=PUT_HERE_YOUR_COMMUNICATION_SERVICES_CONNECTION_STRING
COMMUNICATION_SERVICES_ENDPOINT_URL=PUT_HERE_COMMUNICATION_SERVICES_ENDPOINT_URL
SERVICE_BUS_CONNECTION_STRING=PUT_HERE_SERVICE_BUS_CONNECTION_STRING
VUE_APP_API_BASE_URL=http://localhost:8000/api
SERVER:
cd acs_server
npm install
npm start
CLIENT:
cd acs_client
npm install
npm run serve
https://azure.microsoft.com/en-us/services/communication-services/