System Settings
Using system settings from the CLI
echo ${PATH}Default values
server start port=${SERVER_PORT:8080}
`Using system settings in JSON files
server set web.http.port=\${WEB_PORT:8080}{
"http":{
"port":"${WEB_PORT:8080}"
}
}
}Manual system setting replacements
In a complex data structure
In a string
Programmatic access
Last updated
Was this helpful?