Update README.md

This commit is contained in:
Santiago Lo Coco 2024-11-05 19:15:08 +01:00
parent f531fc487c
commit 44adb51a1e
1 changed files with 12 additions and 1 deletions

View File

@ -26,12 +26,21 @@ Instead of hardcoding endpoints and needing to redeploy the app every time you w
bash run.sh bash run.sh
``` ```
or, if you are on Windows or, if you are on Windows:
```ps ```ps
.\start.bat .\start.bat
``` ```
Alternatively, if you prefer to use docker you can run:
```bash
cd docker
docker compose up --build
```
However, due to the use of `network_mode: host`, this method is only supported on Linux. For more information, refer to the [docker docs](https://docs.docker.com/engine/network/drivers/host/#docker-desktop).
### Endpoints ### Endpoints
- `GET /api/endpoints`: Get the list of all WebRTC endpoints. - `GET /api/endpoints`: Get the list of all WebRTC endpoints.
@ -45,6 +54,8 @@ Note that by default, the API initializes with predefined endpoints unless `DEFA
- `/api/endpoints/1: {"url": "http://$SERVICE_IP:8100/mystream/"}` - `/api/endpoints/1: {"url": "http://$SERVICE_IP:8100/mystream/"}`
- `/api/endpoints/2: {"url": "http://$SERVICE_IP:8200/mystream/"}` - `/api/endpoints/2: {"url": "http://$SERVICE_IP:8200/mystream/"}`
Here, we use the service IP, which matches the IP address for the API. This way, we don't rely on DNS resolution, which can sometimes have issues. The main task is to access the API endpoint, which can be done either through the service IP or with Zeroconf. You can also use a custom mDNS client that follows RFC 6762 and RFC 6763, like the one implemented in [WebView](https://github.com/se23m504/WebView).
### cURL examples ### cURL examples
``` ```