
Some checks failed
CI/CD Pipeline / Test Suite (push) Has been cancelled
CI/CD Pipeline / Security Audit (push) Has been cancelled
CI/CD Pipeline / Build Docker Image (push) Has been cancelled
CI/CD Pipeline / Deploy to Staging (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled
CI/CD Pipeline / Performance Benchmarks (push) Has been cancelled
CI/CD Pipeline / Cleanup (push) Has been cancelled
42 lines
811 B
TOML
42 lines
811 B
TOML
# Development Environment Configuration
|
|
# Settings optimized for local development and debugging
|
|
|
|
[server]
|
|
environment = "development"
|
|
log_level = "debug"
|
|
protocol = "http"
|
|
host = "127.0.0.1"
|
|
port = 3030
|
|
|
|
[app]
|
|
debug = true
|
|
enable_metrics = true
|
|
enable_health_check = true
|
|
enable_compression = false
|
|
|
|
[cors]
|
|
allowed_origins = ["http://localhost:3030", "http://127.0.0.1:3030", "http://localhost:3000"]
|
|
|
|
[session]
|
|
secret = "dev-session-secret-change-in-production"
|
|
cookie_secure = false
|
|
|
|
[database]
|
|
url = "sqlite:dev_database.db"
|
|
max_connections = 5
|
|
|
|
[logging]
|
|
level = "debug"
|
|
file_path = "logs/dev_app.log"
|
|
enable_console = true
|
|
enable_file = true
|
|
|
|
[features]
|
|
auth = true
|
|
tls = false
|
|
content_db = true
|
|
two_factor_auth = false
|
|
|
|
[build]
|
|
features = ["auth", "content-db", "crypto", "email", "metrics", "examples"]
|