Amp-Thread-ID: https://ampcode.com/threads/T-d9bbd9a4-ce62-4729-b3e5-e83ce72aaf7d Co-authored-by: Amp <amp@ampcode.com>
18 lines
767 B
Plaintext
18 lines
767 B
Plaintext
# Environment variables for the bot
|
|
# Copy this file to .env and fill in your actual values
|
|
|
|
TELEGRAM_BOT_TOKEN=your_bot_token_here
|
|
# Comma-separated list of owner Telegram user IDs (e.g., 123456789,987654321)
|
|
OWNER_ID=your_telegram_user_id_here
|
|
CHANNEL_ID=@your_channel_or_id_here
|
|
# PostgreSQL connection string (format: postgresql://user:password@host:port/database)
|
|
DATABASE_URL=postgresql://meme:meme@localhost:5432/meme_wrangler
|
|
# Docker Compose overrides these defaults; adjust if you change the compose file
|
|
POSTGRES_DB=meme_wrangler
|
|
POSTGRES_USER=meme
|
|
POSTGRES_PASSWORD=meme
|
|
# Optional: override backup directory path
|
|
# MEMEBOT_BACKUP_DIR=/path/to/backups
|
|
# Optional: override backup secret hash (SHA-256)
|
|
# MEMEBOT_BACKUP_PASSWORD_HASH=your_sha256_hash_here
|