1
0
mirror of https://github.com/TheLocehiliosan/yadm synced 2026-03-02 03:49:29 +00:00

Add Makefile for starting/stopping jekyll

This commit is contained in:
Tim Byrne
2016-09-06 22:19:12 -05:00
parent b967d9ae8a
commit f9942449f4

7
Makefile Normal file
View File

@@ -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