| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
(Cloudflare Meet was formerly known as Orange Meets)
Meet is a demo application built using Cloudflare Realtime SFU. To build your own WebRTC application using Cloudflare Realtime, get started in the Cloudflare Dashboard.
Simpler examples can be found here.
Go to the Cloudflare Realtime dashboard and create an application.
Put these variables into .dev.vars
CALLS_APP_ID=<APP_ID_GOES_HERE> CALLS_APP_SECRET=<SECRET_GOES_HERE>
The following variables are optional:
To customize these variables, place replacement values in .dev.vars (for development) and in the [vars] section of wrangler.toml (for the deployment).
npm install
npm run devOpen up http://127.0.0.1:8787 and you should be ready to go!
wrangler loginUpdate CALLS_APP_ID in wrangler.toml to use your own Calls App ID
You will also need to set the token as a secret by running:
wrangler secret put CALLS_APP_SECRETor to programmatically set the secret, run:
echo REPLACE_WITH_YOUR_SECRET | wrangler secret put CALLS_APP_SECRETOptionally, you can also use Cloudflare's TURN Service by setting the TURN_SERVICE_ID variable in wrangler.toml and TURN_SERVICE_TOKEN secret using wrangler secret put TURN_SERVICE_TOKEN
Also optionally, you can include OPENAI_MODEL_ENDPOINT and OPENAI_API_TOKEN to use OpenAI's Realtime API with WebRTC to invite AI to join your meeting.
Finally you can run the following to deploy:
npm run deploy| Back | FazBrowse Home | New Git URL |