Rustelo/templates/cms/config.toml
Jesús Pérez 0aeaa33d9a
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
chore: update gitignore and fix content
2026-02-08 20:09:38 +00:00

38 lines
733 B
TOML

# 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}"
cors_origins = ["http://localhost:3000"]