25 lines
621 B
Markdown
25 lines
621 B
Markdown
# OpenVidu Meet Backend
|
|
|
|
This is the backend of OpenVidu Meet. It is a Node.js application that uses [Express](https://expressjs.com/) as web server.
|
|
|
|
## How to run
|
|
|
|
For running the backend you need to have installed [Node.js](https://nodejs.org/). Then, you can run the following commands:
|
|
|
|
```bash
|
|
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:
|
|
|
|
```bash
|
|
npm install
|
|
npm run build:prod
|
|
```
|