Skip to content

Instantly share code, notes, and snippets.

@JorgeVV
Last active September 24, 2019 06:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JorgeVV/839c9f4c904ee2d82cad33cfa69216ea to your computer and use it in GitHub Desktop.
Save JorgeVV/839c9f4c904ee2d82cad33cfa69216ea to your computer and use it in GitHub Desktop.
Stuff you may want to learn.

Resources

General

  • The Twelve-Factor App:

    In the modern era, software is commonly delivered as a service: called web apps, or software-as-a-service. The twelve-factor app is a methodology for building software-as-a-service apps that:

    • Use declarative formats for setup automation, to minimize time and cost for new developers joining the project;
    • Have a clean contract with the underlying operating system, offering maximum portability between execution environments;
    • Are suitable for deployment on modern cloud platforms, obviating the need for servers and systems administration;
    • Minimize divergence between development and production, enabling continuous deployment for maximum agility;
    • And can scale up without significant changes to tooling, architecture, or development practices.

    The twelve-factor methodology can be applied to apps written in any programming language, and which use any combination of backing services (database, queue, memory cache, etc).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment