Example 11994
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: "Bernier, Hane and Schinner"
version: "7.3.14" # semver
# Brief description for the about page
description: "Proactive system-worthy process improvement"
}
# Server configuration
server: {
host: "0.0.0.0" # bind to all interfaces
port: 8606 # default: 8080
# Number of worker processes
workers: 6 # set to 0 for auto
}
# Logging settings
logging: {
# Valid levels: debug, info, warn, error
level: "error"
format: "text" # json recommended for production
output: "stdout" # file path or stdout
}
}