Files
game-marathon/.env.example

25 lines
551 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-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
2025-12-14 02:38:35 +07:00
# Frontend (for build)
VITE_API_URL=/api/v1