- CI: workflows updates (cd, ci), remove playwright.yml - E2E: global-setup, auth/playlists/profile specs - Remove playwright-report and test-results artifacts from tracking - Backend: auth, handlers, services, workers, migrations - Frontend: components, features, vite config - Add e2e-results.json to gitignore - Docs: REMEDIATION_PROGRESS, audit archive - Rust: chat-server, stream-server updates
23 lines
771 B
Text
23 lines
771 B
Text
# Veza Stream Server — Environment Template
|
|
# Copy to .env and fill with real values. Never commit .env.
|
|
|
|
# Security (required, min 32 chars)
|
|
SECRET_KEY=your-secret-key-minimum-32-characters-long
|
|
JWT_SECRET=your-jwt-secret-minimum-32-characters-long
|
|
|
|
# Internal API key for stream-events callbacks to backend (must match STREAM_SERVER_INTERNAL_API_KEY on backend)
|
|
# Backend validates X-Internal-API-Key on POST /api/v1/internal/stream-events
|
|
INTERNAL_API_KEY=
|
|
|
|
# Database
|
|
DATABASE_URL=postgres://user:password@host:5432/veza?sslmode=disable
|
|
|
|
# Message queue (optional)
|
|
RABBITMQ_URL=amqp://user:password@host:5672/%2f
|
|
|
|
# CORS — use specific origins in production, never *
|
|
ALLOWED_ORIGINS=https://veza.fr,https://app.veza.fr
|
|
|
|
# Storage
|
|
AUDIO_DIR=audio
|
|
STREAM_PORT=3002
|