Add Makefile for starting/stopping jekyll
This commit is contained in:
parent
b967d9ae8a
commit
f9942449f4
1 changed files with 7 additions and 0 deletions
7
Makefile
Normal file
7
Makefile
Normal 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
|
Loading…
Reference in a new issue