* add token endpoint for livekit * fix: invalid type passed to hook * fix: inject livekit env variables for orion * fix: show controls indicator above stream # shortcut * return livekit server url from api * simple huddle implementation with streams * set human name in livekit room context * simplify deployment tooling * join huddle with audio automatically * feat: show when there is an active huddle This introduces a webhook which listens to events from livekit and updates our firestore stream particle. It keeps the client simple, reacting to changes to firestore docs. * use headphones icon for huddles * fix: screenshare not working in electron The default VideoConference component from livekit doesn't support screenshare in electron. This attempts to compose our own layout with livekit components ourselves and introduces our own flow for screenshare.
33 lines
422 B
Markdown
33 lines
422 B
Markdown
# Orion
|
|
|
|
API server and worker services for llink.
|
|
|
|
## Deploy
|
|
|
|
```bash
|
|
# Deploy all services
|
|
make deploy-dev
|
|
make deploy-prod
|
|
|
|
# Deploy a single service
|
|
make deploy-dev MODULE=orion
|
|
make deploy-dev MODULE=worker
|
|
```
|
|
|
|
## Migrations
|
|
|
|
```bash
|
|
make migrate-dev
|
|
make migrate-prod
|
|
|
|
# Create a new migration
|
|
make create-migration ARG="create_users_table"
|
|
```
|
|
|
|
## Database Access
|
|
|
|
```bash
|
|
make dev-database
|
|
make prod-database
|
|
```
|