Files
n8n-workflows/.env.staging

34 lines
646 B
Plaintext
Raw Normal View History

# Staging Environment Configuration
# Copy this file to .env for staging deployment
# Application Settings
ENVIRONMENT=staging
DEBUG=false
LOG_LEVEL=info
RELOAD=false
# Server Configuration
HOST=0.0.0.0
PORT=8000
# Database Configuration
DATABASE_PATH=database/workflows.db
WORKFLOWS_PATH=workflows
# Performance Settings
ENABLE_METRICS=true
MAX_WORKERS=2
# Security Settings (Basic Auth for staging)
BASIC_AUTH_USERNAME=staging
BASIC_AUTH_PASSWORD=staging-password-change-this
# Logging
LOG_FORMAT=json
LOG_TO_CONSOLE=true
LOG_TO_FILE=true
LOG_FILE_PATH=logs/app.log
# Monitoring
ENABLE_HEALTH_CHECKS=true
PROMETHEUS_METRICS_PATH=/metrics