1
0
Fork 0
mirror of synced 2024-05-26 03:51:11 -04: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
No known key found for this signature in database
GPG key ID: 6CBE24C2FD8CF76E

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