Go to file
Santiago Lo Coco 677d993de1 Refactor index.html 2024-10-25 21:26:31 +02:00
docker Reformat code 2024-10-20 22:57:18 +02:00
src Refactor index.html 2024-10-25 21:26:31 +02:00
.gitignore Refactor index.html 2024-10-25 21:26:31 +02:00
.pre-commit-config.yaml Add pre-commit 2024-10-20 22:57:06 +02:00
README.md Move commands to the README.md 2024-10-25 18:35:59 +02:00
run.bat Refactor code 2024-10-20 21:52:31 +02:00
run.sh Reformat code 2024-10-20 22:57:18 +02:00

README.md

GetEndpoints

This REST API is for managing WebRTC endpoint streams. It is designed for a Unity app running on the HoloLens, where typing and changing settings can be slow and frustrating. Instead of hardcoding endpoints and having to redeploy the app whenever changes are needed, this API provides a single source of truth (SSOT). You can easily update the endpoints whenever you want, making it simple to manage without hassle.

Prerequisites

  • python >= 3.11
  • python-venv

Usage

  1. Create your src/.env file according to your requirements. You can copy src/.env.dev as a reference.

  2. Run the application:

    bash run.sh
    

    or, if you are on Windows

    .\start.bat
    

Endpoints

  • GET /api/endpoints: Get the list of all WebRTC endpoints.
  • GET /api/endpoints/{id}: Get a specific endpoint by ID.
  • PUT /api/endpoints/{id}: Update an existing endpoint.

cURL examples

Invoke-WebRequest examples

API host

By default, this API expects windows.local to be an existing DNS record on your DNS server (which could also be defined in your hosts file). If you don't want to use windows.local, update the API_HOST in your .env file.