1
0
mirror of https://github.com/TheLocehiliosan/yadm synced 2024-10-27 20:34:27 +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
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