2026-02-08 20:09:38 +00:00
|
|
|
# Main Configuration for Rustelo Implementation
|
|
|
|
|
# This file contains production settings
|
|
|
|
|
|
|
|
|
|
[app]
|
|
|
|
|
name = "jpl-website"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
environment = "production"
|
|
|
|
|
|
|
|
|
|
[server]
|
|
|
|
|
host = "127.0.0.1"
|
|
|
|
|
port = 3000
|
|
|
|
|
workers = 4
|
|
|
|
|
|
|
|
|
|
[database]
|
|
|
|
|
# Database configuration will be loaded from environment variables
|
|
|
|
|
# Set DATABASE_URL in your .env file
|
|
|
|
|
url = "${DATABASE_URL}"
|
|
|
|
|
max_connections = 10
|
|
|
|
|
min_connections = 1
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
# Feature flags for this implementation
|
|
|
|
|
content_static = true
|
|
|
|
|
auth = false
|
|
|
|
|
email = false
|
|
|
|
|
metrics = false
|
|
|
|
|
tls = false
|
|
|
|
|
|
|
|
|
|
[assets]
|
|
|
|
|
# Static asset configuration
|
|
|
|
|
static_dir = "public"
|
|
|
|
|
upload_dir = "uploads"
|
|
|
|
|
max_file_size = "10MB"
|
|
|
|
|
|
|
|
|
|
[security]
|
|
|
|
|
# Security settings
|
|
|
|
|
secret_key = "${SECRET_KEY}"
|
2026-02-08 20:37:49 +00:00
|
|
|
cors_origins = ["http://localhost:3000"]
|