From e7c4a3167fe55f3c90c2092045bdf47cb8ba6ff1 Mon Sep 17 00:00:00 2001 From: Owen Voke Date: Tue, 25 Jun 2019 09:50:55 +0100 Subject: [PATCH] jigsaw: add page --- pages/common/jigsaw.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/common/jigsaw.md diff --git a/pages/common/jigsaw.md b/pages/common/jigsaw.md new file mode 100644 index 000000000..d085befa2 --- /dev/null +++ b/pages/common/jigsaw.md @@ -0,0 +1,28 @@ +# jigsaw + +> A Laravel-based static site builder for PHP. +> More information: . + +- Initialise a project: + +`jigsaw init` + +- Initialise a project with a specific preset: + +`jigsaw init {{preset_name}}` + +- Build the site for development: + +`jigsaw build` + +- Preview the site from the "build_local" directory: + +`jigsaw serve` + +- Build the site for production: + +`jigsaw build production` + +- Preview the site from the "build_production" directory: + +`jigsaw serve {{build_production}}`