- Add global activeRoom store for persistent WebSocket connection - Add MiniPlayer component for playback controls across pages - Add chunked S3 streaming with 64KB chunks and Range support - Add queue item removal button - Move DB credentials to environment variables - Update .env.example with DB configuration 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
15 lines
320 B
Plaintext
15 lines
320 B
Plaintext
# Database
|
|
DB_USER=postgres
|
|
DB_PASSWORD=postgres
|
|
DB_NAME=enigfm
|
|
|
|
# JWT Secret (обязательно смените!)
|
|
SECRET_KEY=your-secret-key-change-in-production
|
|
|
|
# S3 (FirstVDS)
|
|
S3_ENDPOINT_URL=https://s3.firstvds.ru
|
|
S3_ACCESS_KEY=your-access-key
|
|
S3_SECRET_KEY=your-secret-key
|
|
S3_BUCKET_NAME=enigfm
|
|
S3_REGION=ru-1
|