Skip to content

Instantly share code, notes, and snippets.

View JorgeVV's full-sized avatar

Jorge Villalobos JorgeVV

View GitHub Profile
@JorgeVV
JorgeVV / Resources.md
Last active September 24, 2019 06:19
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;

@JorgeVV
JorgeVV / build.fsx
Created August 23, 2017 16:26
Suave FAKE build watcher
// include Fake libs
#r "./packages/FAKE/tools/FakeLib.dll"
open Fake
open Fake.ProcessHelper
// Directories
[<Literal>]
let BuildDir = "./build/"
[<Literal>]