Install jorge

To start using jorge, download the latest binary for your platform from the releases page, and put it somewhere on your path. For example:

$ wget https://github.com/facundoolano/jorge/releases/latest/download/jorge-linux-amd64 -O jorge
$ chmod +x jorge
$ mv jorge /usr/local/bin

Alternatively, if you have Go available in your system, you can install it with:

$ go install github.com/facundoolano/jorge@latest

Once installed, the help command will provide an overview of what you can do with jorge:

$ jorge -h
Usage: jorge <command>

Commands:
  init (i) <path>
    Initialize a new website project.

  build (b) [<path>]
    Build a website project.

  post (p) [<title>]
    Initialize a new post template file.

  serve (s) [<path>]
    Run a local server for the website.

Flags:
  -h, --help       Show context-sensitive help.
  -v, --version

Run "jorge <command> --help" for more information on a command.