aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 8b93d83254eb36ada7bd01150a4c4a6d198d4960 (plain)
1
2
3
4
5
6
7
8
9
10
11
clean:
	-rm -Rf _site/

run: clean
	bundle exec jekyll serve --host=0.0.0.0 --incremental --drafts

publish:
	cp _includes/site.min.css assets/site.min.css # for service worker
	git add .
	git commit -m "content update"
	git push