Example 14795
Config with Comments
Heavily documented configuration file.
# Application Configuration File
# Generated by MAML examples
{
# Application metadata
# These values are shown in the UI
app: {
# The display name shown in the UI
name: "Reilly, Langworth and Kunde"
version: "2.18.7" # semver
# Brief description for the about page
description: "Open-architected zero defect generative AI"
}
# Server configuration
server: {
host: "0.0.0.0" # bind to all interfaces
port: 5490 # default: 8080
# Number of worker processes
workers: 1 # set to 0 for auto
}
# Logging settings
logging: {
# Valid levels: debug, info, warn, error
level: "warn"
format: "text" # json recommended for production
output: "/var/log/app.log" # file path or stdout
}
}