Files
tg_tinder_bot/.env.example
2025-09-12 21:25:54 +09:00

31 lines
633 B
Plaintext

# Telegram Bot Configuration
TELEGRAM_BOT_TOKEN=your_telegram_bot_token_here
# Database Configuration
DB_HOST=localhost
DB_PORT=5432
DB_NAME=telegram_tinder_bot
DB_USERNAME=postgres
DB_PASSWORD=your_password_here
# Application Settings
NODE_ENV=development
PORT=3000
# Optional: Redis for caching (if using)
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_PASSWORD=
# Optional: File upload settings
UPLOAD_PATH=./uploads
MAX_FILE_SIZE=5242880
# Optional: External services
GOOGLE_MAPS_API_KEY=your_google_maps_key
CLOUDINARY_URL=your_cloudinary_url
# Security
JWT_SECRET=your_jwt_secret_here
ENCRYPTION_KEY=your_encryption_key_here