veza/veza-stream-server/.env.example

20 lines
561 B
Text
Raw Normal View History

# 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
# 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