621 B
621 B
OpenVidu Meet Backend
This is the backend of OpenVidu Meet. It is a Node.js application that uses Express as web server.
How to run
For running the backend you need to have installed Node.js. Then, you can run the following commands:
npm install
npm run start:dev
This will start the backend in development mode. The server will listen on port 6080.
You can change the port and other default values in the file src/config.ts.
How to build
For building the backend you can run the following command:
npm install
npm run build:prod