-
-
Save erichosick/27002f8470e8b98dd1bf9112794adb66 to your computer and use it in GitHub Desktop.
Configuration Context
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// The root of the configuraton file is scoped to the | |
// entire company: all software offerings. | |
{ | |
// The Platform context contains all services and | |
// applications for a specific product offering. | |
"platform": { | |
// The Compute context provides configuration | |
// to a specific application, service, mciro-service, | |
// lambda, etc. | |
"compute": { | |
// The Environment context scopes the configuration | |
// to a given environment such as dev, stage, prod, | |
// custom, etc. | |
"environment": { | |
// Final configured values like ports, logging setting, etc. | |
"configuration": { | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment