26 lines
523 B
Plaintext
26 lines
523 B
Plaintext
# PostgreSQL Configuration
|
|
POSTGRES_USER=user
|
|
POSTGRES_PASSWORD=password
|
|
POSTGRES_DB=quiz_app
|
|
POSTGRES_PORT=5432
|
|
|
|
# Redis Configuration
|
|
REDIS_PORT=6379
|
|
|
|
# Nginx Configuration
|
|
NGINX_PORT=80
|
|
|
|
# Frontend Configuration
|
|
FRONTEND_API_URL=http://localhost:80
|
|
|
|
# Backend Configuration
|
|
PORT=8080
|
|
SECRET_KEY=your-very-secret-key
|
|
|
|
# Bot Configuration
|
|
BOT_TOKEN=your-telegram-bot-token
|
|
BACKEND_API_URL=http://backend:8080
|
|
FRONTEND_URL=http://localhost
|
|
BOT_USERNAME=your_bot_username
|
|
ADMIN_USER_IDS=123456789
|
|
OPERATOR_USER_IDS=123456789 |