Files
game-marathon/.env.example

35 lines
826 B
Plaintext
Raw Normal View History

2025-12-14 02:38:35 +07:00
# Database
DB_PASSWORD=change_me_secure_password
# Backend
SECRET_KEY=change_me_jwt_secret_key_at_least_32_chars
DEBUG=false
# OpenAI API
OPENAI_API_KEY=sk-...
# Telegram Bot
TELEGRAM_BOT_TOKEN=123456:ABC-DEF...
2025-12-18 17:15:21 +07:00
BOT_API_SECRET=change_me_random_secret_for_bot_api
2025-12-14 02:38:35 +07:00
2025-12-16 01:25:21 +07:00
# S3 Storage - FirstVDS (set S3_ENABLED=true to use)
S3_ENABLED=false
S3_BUCKET_NAME=your-bucket-name
S3_REGION=ru-1
S3_ACCESS_KEY_ID=your-access-key-id
S3_SECRET_ACCESS_KEY=your-secret-access-key
S3_ENDPOINT_URL=https://s3.firstvds.ru
S3_PUBLIC_URL=https://your-bucket-name.s3.firstvds.ru
# Backup Service
TELEGRAM_ADMIN_ID=947392854
S3_BACKUP_PREFIX=backups/
BACKUP_RETENTION_DAYS=14
# Status Service (optional - for external monitoring)
EXTERNAL_URL=https://your-domain.com
PUBLIC_URL=https://your-domain.com
2025-12-14 02:38:35 +07:00
# Frontend (for build)
VITE_API_URL=/api/v1