23 lines
532 B
Plaintext
23 lines
532 B
Plaintext
# Telegram Bot Token
|
|
BOT_TOKEN=your_bot_token_here
|
|
|
|
# Backend API URL
|
|
BACKEND_API_URL=http://localhost:8080
|
|
|
|
# Frontend URL (for mini app)
|
|
FRONTEND_URL=http://localhost:5173
|
|
|
|
# Bot username (without @)
|
|
BOT_USERNAME=QuizBot
|
|
|
|
# Admin user IDs (comma-separated)
|
|
ADMIN_USER_IDS=123456789,987654321
|
|
|
|
# Operator user IDs (comma-separated)
|
|
OPERATOR_USER_IDS=111111111,222222222
|
|
|
|
# Secret key for validating webhook requests (optional)
|
|
WEBHOOK_SECRET=your_webhook_secret
|
|
|
|
# Webhook URL (optional)
|
|
WEBHOOK_URL=https://your-domain.com/webhook |