Example 8788
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: "Little, Corkery and Stark-Swift"
version: "5.5.5" # semver
# Brief description for the about page
description: "Open-source 24/7 matrix"
}
# Server configuration
server: {
host: "0.0.0.0" # bind to all interfaces
port: 5268 # default: 8080
# Number of worker processes
workers: 7 # set to 0 for auto
}
# Logging settings
logging: {
# Valid levels: debug, info, warn, error
level: "error"
format: "json" # json recommended for production
output: "/var/log/app.log" # file path or stdout
}
}