alabuga/backend/.env.example
2025-09-28 20:29:36 +03:00

21 lines
563 B
Plaintext

# Alabuga Gamification API Environment Variables
# General settings
ALABUGA_ENVIRONMENT=local
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
ALABUGA_UPLOADS_PATH=/data/uploads
# CORS settings (JSON array format)
ALABUGA_BACKEND_CORS_ORIGINS=["http://localhost:3000", "http://frontend:3000", "http://0.0.0.0:3000"]