Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 1.57 KB

File metadata and controls

49 lines (32 loc) · 1.57 KB

Demo

Try it for free at https://dmeet.org

An open source video conferencing application built on dTelecom components and decentralized servers.

Deploying

This demo is a Next.js app. You can deploy to your Vercel account with one click:

Deploy with Vercel

Refer to the Next.js deployment documentation for more about deploying to a production environment.

Creating and connecting database

  1. Open https://vercel.com/dashboard/stores
  2. Click "Create" at Postgress (Beta)
  3. Select storage type "Postgress" and press "Continue"
  4. Type database name, select location and press "Create"
  5. Press "Connect Project" in "Getting started" section, select your project
  6. Redeploy your project

Running locally

Clone the repo and install dependencies:

git clone git@github.com:dTelecom/conference-example.git
cd conference-example
npm install

Create a new project at https://cloud.dtelecom.org. Then create a new key in your project settings.

Edit .env.development file to add your new API key and secret

API_KEY=<your api key>
API_SECRET=<your api secret>

Then run the development server:

npm run dev

You can test it by opening http://localhost:3000 in a browser.