Skip to content

Latest commit

 

History

History
45 lines (33 loc) · 1.06 KB

readme.md

File metadata and controls

45 lines (33 loc) · 1.06 KB

SilentVoice (2nd Year Project 🎓🚀)

Description

A Group video calling application 👥 using the Agora Web SDK with a Django backend integrated with Sign Language for Deaf people.

How to use this source code

1 - Clone repo

git clone https://github.com/ayushvidhale/SilentVoice/

2 - Install requirements

cd SilentVoice
pip install -r requirements.txt

3 - Update Agora credentals

In order to use this project you will need to replace the agora credentials in views.py and streams.js.

Create an 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. If you have questions about where to get your app I'd recommend referencing this link https://youtu.be/HX6AM_1-jNM?t=88

views.py
def getToken(request):
    appId = "YOUR APP ID"
    appCertificate = "YOUR APPS CERTIFICATE"
    ......
streams.js
....
const APP_ID = 'YOUR APP ID'
....

4 - Start server

python manage.py runserver