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
26 lines
441 B
TOML
26 lines
441 B
TOML
# Application Configuration for jpl-website
|
|
|
|
[app]
|
|
name = "jpl-website"
|
|
version = "0.1.0"
|
|
description = "A Rustelo basic implementation"
|
|
author = "{{project_author}}"
|
|
|
|
[runtime]
|
|
# Runtime configuration
|
|
tokio_threads = 4
|
|
blocking_threads = 512
|
|
|
|
[logging]
|
|
# Logging configuration
|
|
level = "info"
|
|
format = "json"
|
|
target = "stdout"
|
|
|
|
[paths]
|
|
# Path configuration
|
|
static_files = "public"
|
|
templates = "templates"
|
|
uploads = "uploads"
|
|
cache = "cache"
|