The config template file (acklo.config.yml) is used to specify the details
of a configuration that is under management by acklo.
A ConfigTemplate can contain many Configurations, which can be used to
separate distinct areas of your app that you'd like to configure, for example
feature switches and server startup config.
example
---version: v1configuration: - id: app_configname: App configdescription: Key configuration for the app.properties: - id: log_levelname: Log leveltype: stringdefault: trace - id: portname: Server porttype: numberdefault: 3000 - id: feature_switchesname: Feature switchesdescription: Feature switches for the app.properties: - id: motdname: Message of the daytype: stringdefault: Be good to each other. - id: new_headername: Show new headertype: booleandefault: false
acklo's config template definitions.
The config template file (
acklo.config.yml
) is used to specify the details of a configuration that is under management by acklo.A ConfigTemplate can contain many Configurations, which can be used to separate distinct areas of your app that you'd like to configure, for example feature switches and server startup config.