- 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
19 lines
830 B
Plaintext
19 lines
830 B
Plaintext
# Backend API production env (DO NOT commit secrets in public repos)
|
|
VITE_STUDIO_URL=https://avanzacast-studio.bfzqqk.easypanel.host
|
|
VITE_BROADCASTPANEL_URL=https://avanzacast-broadcastpanel.bfzqqk.easypanel.host
|
|
VITE_TOKEN_SERVER_URL=https://avanzacast-servertokens.bfzqqk.easypanel.host
|
|
|
|
# LiveKit credentials - set real values in your production environment or CI secrets
|
|
LIVEKIT_API_KEY=devkey
|
|
LIVEKIT_API_SECRET=secretsecretsecretsecretsecretsecret
|
|
LIVEKIT_URL=wss://livekit-server.bfzqqk.easypanel.host
|
|
|
|
# Allow frontend origins (production)
|
|
FRONTEND_URLS=https://avanzacast-broadcastpanel.bfzqqk.easypanel.host,https://avanzacast-studio.bfzqqk.easypanel.host
|
|
|
|
# Database connection (Postgres)
|
|
DATABASE_URL="postgres://postgres:72ff3d8d80c352f89d99@192.168.1.20:5433/llmchats?sslmode=disable"
|
|
|
|
PORT=4000
|
|
NODE_ENV=production
|