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>
This commit is contained in:
21
TeleBot/.env.production.example
Normal file
21
TeleBot/.env.production.example
Normal file
@@ -0,0 +1,21 @@
|
||||
# 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
|
||||
Reference in New Issue
Block a user