34 lines
775 B
Plaintext
34 lines
775 B
Plaintext
# 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...
|
|
|
|
# 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
|
|
|
|
# Frontend (for build)
|
|
VITE_API_URL=/api/v1
|