This repository is for group call on Azure Communication Services.
- Clone This Repository
- Run
npm install
at repository root - Go to
api
folder - Create New Azure Functions Project. (
Ctrl + Shift + P
then chooseAzure Functions: Create New Project...
on Visual Studio Code) - Activate virtualenv if not activated (
source .venv/bin/activate
or\.venv\Scripts\activate
) - Run
pip install -r requirements.txt
Set Connection String value at local.settings.json
after creating New Project for Azure Functions.
{
"IsEncrypted": false,
"Values": {
"FUNCTIONS_WORKER_RUNTIME": "python",
"COMMUNICATION_SERVICES_CONNECTION_STRING": "",
}
}
- Run
npm start
- Run
func host start
at api (Don't forget activate your venv)
This App backend is Azure Functions. So you can deploy to Azure Static Web Apps.
Clone (git clone
) or Fork this repository.
Go to Azure Portal and create Azure Static Web Apps.
Choose your cloned repo and set build details.
- Build Presets: React
- App location:
/
- Api location: api
- Outout location: build
Set Azure Communication Services connection string on Azure Static Web Apps.
This repository refferred to these samples.
This repository is MIT LICENSE.