From f9942449f415a419ef373852c5446daea502980a Mon Sep 17 00:00:00 2001 From: Tim Byrne Date: Tue, 6 Sep 2016 22:19:12 -0500 Subject: [PATCH] Add Makefile for starting/stopping jekyll --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..188c693 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +start: + bundle exec jekyll serve --config _config.yml,_config.dev.yml --watch >/dev/null 2>&1 & + +stop: + pkill -f jekyll + +restart: stop start