Twelve Factor: Difference between revisions
From ym2149.org
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 11: | Line 11: | ||
== V == | == V == | ||
* to avoid unpleasant surprises, a deployment should only be able to access config specific to that environment | * to avoid unpleasant surprises, a deployment should only be able to access config specific to that environment (along with config common to all envs) | ||
== X == | == X == |
Revision as of 12:59, 19 April 2024
- https://12factor.net/
- itil for influencers
III
- environment variables are too crude for typical config workloads
V
- to avoid unpleasant surprises, a deployment should only be able to access config specific to that environment (along with config common to all envs)
X
- differences between envs must be inspectable, so that the confidence you gain in one env actually means something in the next
XI
- logging goes to stderr not stdout