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