All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 58s
22 lines
778 B
Plaintext
22 lines
778 B
Plaintext
# Database Configuration
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
DB_USER=playeng
|
|
DB_PASSWORD=playeng
|
|
DB_NAME=playeng
|
|
|
|
# Server Configuration
|
|
PORT=8080
|
|
|
|
# Telegram Bot Configuration (optional - for direct Telegram integration)
|
|
# Get token from @BotFather in Telegram: https://t.me/botfather
|
|
# To get chat ID: send a message to your bot, then visit: https://api.telegram.org/bot<YOUR_BOT_TOKEN>/getUpdates
|
|
# Look for "chat":{"id":123456789} - that number is your chat ID
|
|
TELEGRAM_BOT_TOKEN=your_telegram_bot_token_here
|
|
TELEGRAM_CHAT_ID=123456789
|
|
|
|
# Scheduler Configuration
|
|
# Часовой пояс для планировщика (формат IANA: Europe/Moscow, America/New_York и т.д.)
|
|
# ВАЖНО: Если не указан, используется UTC!
|
|
TIMEZONE=Europe/Moscow
|