mirror of
https://github.com/marcogll/telegram_expenses_controller.git
synced 2026-01-13 13:25:15 +00:00
23 lines
597 B
Plaintext
23 lines
597 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 MySQL: DATABASE_URL="mysql+pymysql://user:password@db:3306/expenses"
|
|
DATABASE_URL="mysql+pymysql://user:password@db:3306/expenses"
|
|
|
|
# MySQL specific (for Docker)
|
|
MYSQL_ROOT_PASSWORD="root_password"
|
|
MYSQL_DATABASE="expenses"
|
|
MYSQL_USER="user"
|
|
MYSQL_PASSWORD="password"
|
|
|
|
# Log level (e.g., DEBUG, INFO, WARNING, ERROR)
|
|
LOG_LEVEL="INFO"
|