25 lines
741 B
Bash
25 lines
741 B
Bash
# Ngrok
|
|
# 1. Goto https://ngrok.com
|
|
# 2. Get started for free
|
|
|
|
NGROK_ENABLED=true|false
|
|
NGROK_AUTH_TOKEN=YourNgrokAuthToken
|
|
|
|
# Turn
|
|
# 1. Goto http://numb.viagenie.ca/
|
|
# 2. Create an account
|
|
# 3. Check: https://webrtc.github.io/samples/src/content/peerconnection/trickle-ice/
|
|
|
|
TURN_ENABLED=true|false
|
|
TURN_URLS=turn:numb.viagenie.ca
|
|
TURN_USERNAME=YourNumbUsername
|
|
TURN_PASSWORD=YourNumbPassword
|
|
|
|
# Heroku
|
|
# https://devcenter.heroku.com/articles/config-vars
|
|
|
|
# API
|
|
# The response will give you a entrypoint / Room URL for your meeting.
|
|
# curl -X POST "http://localhost:3000/api/v1/meeting" -H "authorization: YourApiKeySecret" -H "Content-Type: application/json" -d "{ \"title\": \"Mirotalk GET meeting\"}"
|
|
|
|
API_KEY_SECRET=YourApiKeySecret |