14 lines
429 B
Bash
14 lines
429 B
Bash
# Telegram Bot Token (from @BotFather)
|
|
TELEGRAM_BOT_TOKEN=your-bot-token-here
|
|
|
|
# Direct Supabase Postgres connection (join supabase_default network, connect to db:5432)
|
|
POSTGRES_HOST=db
|
|
POSTGRES_PORT=5432
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_PASSWORD=your-supabase-db-password
|
|
POSTGRES_DB=postgres
|
|
|
|
# Worker Configuration
|
|
DEFAULT_INTERVAL_MINUTES=60
|
|
ADMIN_TELEGRAM_IDS=123456789 # Comma-separated Telegram user IDs with admin access
|