2026-02-11 18:49:01 +00:00
|
|
|
# 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
|
2026-03-05 18:22:31 +00:00
|
|
|
# v0.9.1 RS256: path to public key (preferred); or JWT_SECRET for HS256
|
|
|
|
|
# JWT_PUBLIC_KEY_PATH=/path/to/jwt-public.pem
|
2026-02-11 18:49:01 +00:00
|
|
|
JWT_SECRET=your-jwt-secret-minimum-32-characters-long
|
|
|
|
|
|
chore: consolidate CI, E2E, backend and frontend updates
- 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
2026-02-17 15:43:21 +00:00
|
|
|
# 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
|
2026-02-11 20:28:26 +00:00
|
|
|
INTERNAL_API_KEY=
|
|
|
|
|
|
2026-02-11 18:49:01 +00:00
|
|
|
# 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
|