From 05f58f87fa3aff776a7f0bdae9ddedaa915d34e1 Mon Sep 17 00:00:00 2001 From: Eduardo Trujillo <ed@chromabits.com> Date: Sun, 5 Nov 2017 15:24:24 -0800 Subject: [PATCH] docs(README): Update build instructions --- README.md | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 62ccadf..68dabfd 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,22 @@ # Chromabits -Notes: -- npm -- bower -- gulp +Blog static site generator and content server + +## Development + +Previously you needed a few tools to build this blog (Node, Bower, Gulp). It's +now possible to build and host this blog using just Git and Haskell. + +First, make sure all submodules in the repository are initialized and up to +date. This is how we pull external dependencies like Foundation and Font +Awesome. + +Next, use `stack` to build the blog generator and the server: + +``` +stack build -j8 +stack exec blog hakyll build +stack exec server +``` + +You should now be able to go to `http://localhost:9090` to load the blog. -- GitLab