This application use the twilio(www.twilio.com) API to create a video chat application api. The frontend needs to request this video chat post route.
- NodeJS
- Yarn
- Firstly, you need to install all dependencies running
yarn
in the backend folder. - Change the
backend/.env.example
tobackend/.env
- After, you need to create an account on twilio and get the
TWILIO_ACCOUNT_SID
on console and add it on .env - Now, you need to get the
TWILIO_API_KEY
andTWILIO_API_SECRET
creating these under the Programable Video Tools in your console., get it and add on .env. - After that, you just need to execute the following command
yarn dev
.
- You need to navigate to the frontend folder, after that you need to install all dependencies running
yarn
. - Whe it's done, you just need to run the following command
yarn start
@AndersonDev