12 Factor Disposability Normalize not knowing where - or to some extent why - your processes are. And never, ever, name a server (sorry saruman37)
12 Factor Port Binding Making sure that you have a single, simple, well-understood entry point to your service.
12 Factor Build, Release, Run > Strictly separate build and run stages What problem are we solving? Builds should be repeatable, trivial, and boring. If you can build your application twice in a row on different servers and get different results than you have a problem. Additionally, the build should be hands-off. If your build
12 Factor Backing Services How should you incorporate 3rd party services, and their configurations, into your SaaS app? Are they just another dependency or something more?
12 Factor Codebase How many codebases make up a deployable? How many deployable can you build from one codebase?
12 Factor 12 Factor Applications The 12 Factor “manifesto” was written by Adam Wiggins back in 2012 and has become something of a template for building scalable, modern applications in the RESTful era. Find out how it can help you write simple, scalable software for the modern age.