mirror of
https://github.com/marcogll/telegram_expenses_controller.git
synced 2026-01-13 13:25:15 +00:00
17 lines
437 B
Plaintext
17 lines
437 B
Plaintext
# Telegram Bot Token from BotFather
|
|
TELEGRAM_TOKEN=""
|
|
|
|
# Your OpenAI API Key
|
|
OPENAI_API_KEY=""
|
|
|
|
# The ID of the Telegram supergroup where the bot will operate
|
|
SUPERGROUP_ID=""
|
|
|
|
# Database connection string
|
|
# For SQLite: DATABASE_URL="sqlite:///database.db"
|
|
# For PostgreSQL: DATABASE_URL="postgresql://user:password@host:port/dbname"
|
|
DATABASE_URL="sqlite:///database.db"
|
|
|
|
# Log level (e.g., DEBUG, INFO, WARNING, ERROR)
|
|
LOG_LEVEL="INFO"
|