Movatterモバイル変換


[0]ホーム

URL:


The Twelve-Factor App

III. Config

Store config in the environment

An app’sconfig is everything that is likely to vary betweendeploys (staging, production, developer environments, etc). This includes:

Apps sometimes store config as constants in the code. This is a violation of twelve-factor, which requiresstrict separation of config from code. Config varies substantially across deploys, code does not.

A litmus test for whether an app has all config correctly factored out of the code is whether the codebase could be made open source at any moment, without compromising any credentials.

Note that this definition of “config” doesnot include internal application config, such asconfig/routes.rb in Rails, or howcode modules are connected inSpring. This type of config does not vary between deploys, and so is best done in the code.

Another approach to config is the use of config files which are not checked into revision control, such asconfig/database.yml in Rails. This is a huge improvement over using constants which are checked into the code repo, but still has weaknesses: it’s easy to mistakenly check in a config file to the repo; there is a tendency for config files to be scattered about in different places and different formats, making it hard to see and manage all the config in one place. Further, these formats tend to be language- or framework-specific.

The twelve-factor app stores config inenvironment variables (often shortened toenv vars orenv). Env vars are easy to change between deploys without changing any code; unlike config files, there is little chance of them being checked into the code repo accidentally; and unlike custom config files, or other config mechanisms such as Java System Properties, they are a language- and OS-agnostic standard.

Another aspect of config management is grouping. Sometimes apps batch config into named groups (often called “environments”) named after specific deploys, such as thedevelopment,test, andproduction environments in Rails. This method does not scale cleanly: as more deploys of the app are created, new environment names are necessary, such asstaging orqa. As the project grows further, developers may add their own special environments likejoes-staging, resulting in a combinatorial explosion of config which makes managing deploys of the app very brittle.

In a twelve-factor app, env vars are granular controls, each fully orthogonal to other env vars. They are never grouped together as “environments”, but instead are independently managed for each deploy. This is a model that scales up smoothly as the app naturally expands into more deploys over its lifetime.


[8]ページ先頭

©2009-2026 Movatter.jp