Advanced
Web & Software Development
Q98 / 100
What is the Twelve-Factor methodology's stance on configuration?
Correct! Well done.
Incorrect.
The correct answer is B) Configuration must be stored in environment variables (not code or config files in the repo), enabling deployment to different environments without code changes
B
Correct Answer
Configuration must be stored in environment variables (not code or config files in the repo), enabling deployment to different environments without code changes
Explanation
12-Factor Factor III: config in env. Different environments (dev, staging, prod) have different values for database URLs, API keys, feature flags. Env vars are external to code, never committed, and work across languages and OSes.
Progress
98/100