Video calling application using the Agora Web SDK with a Django backend.
git clone https://github.com/Deepakpariharr/DEEPCHAT
cd DEEPCHAT
pip install -r requirements.txt
In order to use this project you will need to replace the agora credentials in views.py
and streams.js
.
Create account at agora.io and create an app
. Once you create your app, you will want to copy the appid
& appCertificate
to update views.py
and streams.js
.
def getToken(request):
appId = "YOUR APP ID"
appCertificate = "YOUR APPS CERTIFICATE"
......
....
const APP_ID = 'YOUR APP ID'
....
python manage.py runserver