https://github.com/observertc/demo-app
https://github.com/observertc/demo-app
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/observertc/demo-app
- Owner: ObserveRTC
- Created: 2023-04-09T05:31:55.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-09-18T12:56:53.000Z (almost 2 years ago)
- Last Synced: 2024-12-31T18:59:53.929Z (over 1 year ago)
- Language: TypeScript
- Size: 1010 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
ObserveRTC Demo Application
---
## Clone
```bash
git clone https://github.com/ObserveRTC/demo-app.git
```
## Install and Build
1. Install the observer
```bash
cd observer && yarn && tsc
```
2. Install the sfu
```bash
cd sfu && yarn && tsc
```
3. Install the webapp
```bash
cd webapp && yarn
```
## Run
1. Start observer
```bash
cd observer
node dist/main.js
```
2. Start sfu
```bash
cd sfu
node dist/main.js
```
3. Start the webapp
```bash
cd webapp
yarn start
```