15 lines
445 B
Bash
15 lines
445 B
Bash
# Telegram Bot Token (from @BotFather)
|
|
TELEGRAM_BOT_TOKEN=your-bot-token-here
|
|
|
|
# PostgreSQL Credentials
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_PASSWORD=change-me-strong-password
|
|
POSTGRES_DB=postgres
|
|
|
|
# PostgREST JWT Secret (random string for signing tokens)
|
|
JWT_SECRET=your-super-secret-jwt-key-change-in-production
|
|
|
|
# Worker Configuration
|
|
DEFAULT_INTERVAL_MINUTES=60
|
|
ADMIN_TELEGRAM_IDS=123456789 # Comma-separated Telegram user IDs with admin access
|