alabuga/backend/.env.example
2025-09-28 14:14:00 +03:00

19 lines
534 B
Plaintext

# Alabuga Gamification API Environment Variables
# Debug mode (enables auto-creation of demo users)
ALABUGA_DEBUG=true
# Security settings
ALABUGA_SECRET_KEY=super-secret-key-change-me-in-production
ALABUGA_JWT_ALGORITHM=HS256
ALABUGA_ACCESS_TOKEN_EXPIRE_MINUTES=720
# Email confirmation settings
ALABUGA_REQUIRE_EMAIL_CONFIRMATION=false
# Database settings
ALABUGA_SQLITE_PATH=/data/app.db
# CORS settings (JSON array format)
ALABUGA_BACKEND_CORS_ORIGINS=["http://localhost:3000", "http://frontend:3000", "http://0.0.0.0:3000"]