All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 57s
- Add telegram_integrations table to store bot token and chat_id - Add Integrations tab with Todoist and Telegram integration screens - Remove TELEGRAM_BOT_TOKEN and TELEGRAM_CHAT_ID from env variables - All Telegram configuration now done through UI - Telegram webhook registration happens when user saves bot token - Rename TELEGRAM_WEBHOOK_BASE_URL to WEBHOOK_BASE_URL
19 lines
619 B
Plaintext
19 lines
619 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
|
|
# Bot Token и Chat ID настраиваются через UI приложения в разделе "Интеграции" -> "Telegram"
|
|
# Get token from @BotFather in Telegram: https://t.me/botfather
|
|
|
|
# Scheduler Configuration
|
|
# Часовой пояс для планировщика (формат IANA: Europe/Moscow, America/New_York и т.д.)
|
|
# ВАЖНО: Если не указан, используется UTC!
|
|
TIMEZONE=Europe/Moscow
|