littleshop/TeleBot/.env.production.example
SysAdmin fd02836450 Add TeleBot CI/CD pipeline configuration
- Created .gitlab-ci.yml for automated builds and deployment
- Added docker-compose.production.yml for VPS deployment
- Added .env.production.example for configuration template
- Follows LittleShop deployment pattern
- Auto-deploy on main branch commits

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-27 09:53:43 +01:00

21 lines
657 B
Plaintext

# TeleBot Production Environment Variables
# Copy this file to /opt/telebot/.env on the VPS and fill in the values
# Telegram Bot Configuration
TELEGRAM_BOT_TOKEN=your_telegram_bot_token_here
TELEGRAM_ADMIN_CHAT_ID=your_admin_chat_id_here
# LittleShop API Configuration
LITTLESHOP_API_URL=http://littleshop-admin:8080
LITTLESHOP_USERNAME=admin
LITTLESHOP_PASSWORD=your_admin_password_here
# Database Encryption
DB_ENCRYPTION_KEY=your_32_character_encryption_key_here
# Optional: Redis Configuration (if enabled)
# REDIS_CONNECTION_STRING=localhost:6379
# Optional: Tor Configuration (if enabled)
# PRIVACY_ENABLE_TOR=false
# PRIVACY_TOR_SOCKS_PORT=9050