OpenVidu Meet Demo
Prerequisites
Run Locally
Note
Before running the application, you must also run OpenVidu Local Deployment.
- Download repository
git clone https://github.com/OpenVidu/openvidu-meet-tutorials.git
cd openvidu-meet-tutorials/meet-demo
- Install dependencies
npm install
- Run the application
npm start
- Access the application at
http://localhost:6080
Run with Docker
Using Docker CLI
- Build the Docker image
docker build -t openvidu/openvidu-meet-demo .
- 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
- 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 |