Some checks failed
CI/CD Pipeline / Test Suite (push) Has been cancelled
CI/CD Pipeline / Security Audit (push) Has been cancelled
CI/CD Pipeline / Performance Benchmarks (push) Has been cancelled
Rust CI / Security Audit (push) Has been cancelled
Rust CI / Check + Test + Lint (nightly) (push) Has been cancelled
Rust CI / Check + Test + Lint (stable) (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 / Cleanup (push) Has been cancelled
39 lines
734 B
TOML
39 lines
734 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"]
|