- Add Next.js app structure with base configs, linting, and formatting - Implement LiveKit Meet page, types, and utility functions - Add Docker, Compose, and deployment scripts for backend and token server - Provide E2E and smoke test scaffolding with Puppeteer and Playwright helpers - Include CSS modules and global styles for UI - Add postMessage and studio integration utilities - Update package.json with dependencies and scripts for development and testing
15 lines
411 B
YAML
15 lines
411 B
YAML
version: '3.8'
|
|
services:
|
|
token-server:
|
|
build: .
|
|
image: avanzacast-token-server:latest
|
|
ports:
|
|
- "4000:4000"
|
|
environment:
|
|
- PORT=4000
|
|
- ALLOWED_ORIGINS=https://avanzacast-broadcastpanel.bfzqqk.easypanel.host
|
|
- LIVEKIT_WS_URL=wss://livekit-server.bfzqqk.easypanel.host
|
|
- REDIS_URL=redis://host.docker.internal:6379
|
|
restart: unless-stopped
|
|
network_mode: host
|