QuestionQ14

Software Development and Design

Which two principles form part of the codebase tenet in the 12-factor app methodology?

Choose two
  • A An application is always tracked in a version control system.
  • B There are multiple codebases per application.
  • C The codebase is the same across all deploys.
  • D There can be a many-to-one correlation between codebase and application.
  • E It is only possible to have one application deployment per codebase.
Explanation

The codebase tenet requires an application to be tracked in a version-control system and to use the same codebase across all of its deployments. A 12-factor application has one codebase per application and can have many deployments.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!