All checks were successful
Datadog Secrets Scanning / Datadog Static Analyzer (push) Successful in 9s
Datadog Software Composition Analysis / Datadog SBOM Generation and Upload (push) Successful in 15s
Datadog Static Analysis / Datadog Static Analyzer (push) Successful in 19s
Release / build (release) Successful in 39s
20 lines
443 B
Markdown
20 lines
443 B
Markdown
# Configuration
|
|
|
|
The configuration file is written in TOML format and contains various settings for the application. Below is an example configuration file (`config.toml`):
|
|
|
|
```toml
|
|
[paths]
|
|
content_dir = "example/content"
|
|
templates_dir = "templates"
|
|
styles_dir = "styles"
|
|
|
|
[server]
|
|
listen_address = "127.0.0.1"
|
|
listen_port = 8080
|
|
debug = false
|
|
access_log = true
|
|
max_threads = 4
|
|
admin_browser = false
|
|
admin_password = "your_admin_password"
|
|
```
|