OpenVidu Meet Demo

Prerequisites

  • Node (for local development)
  • Docker (for containerized deployment)

Run Locally

Note

Before running the application, you must also run OpenVidu Local Deployment.

  1. Download repository
git clone https://github.com/OpenVidu/openvidu-meet-tutorials.git
cd openvidu-meet-tutorials/meet-demo
  1. Install dependencies
npm install
  1. Run the application
npm start
  1. Access the application at http://localhost:6080

Run with Docker

Using Docker CLI

  1. Build the Docker image
docker build -t openvidu/openvidu-meet-demo .
  1. Run the container
docker run -d \
  --name meet-demo \
  -p 6080:6080 \
  -e OV_MEET_SERVER_URL=https://meet.openvidu.io \
  -e OV_MEET_API_KEY=meet-api-key \
  openvidu/openvidu-meet-demo
  1. Access the application at http://localhost:6080

Configuration

The application can be configured using environment variables:

Variable Description Default
SERVER_PORT Port where the server will listen 6080
OV_MEET_SERVER_URL URL of the OpenVidu Meet server http://localhost:9080
OV_MEET_API_KEY API key for OpenVidu Meet authentication meet-api-key