summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 5 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index e32de9d..fa02b3f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,20 +1,15 @@
-build: clean
- bundle exec jekyll build
-
clean:
- rm -rf _site
+ hugo --cleanDestinationDir
server: clean
- bundle exec jekyll server --port 3001 --watch --drafts
+ hugo serve --buildDrafts --buildFuture
deps:
- bundle install --path vendor/bundle
-
-test: build
- bundle exec htmlproof ./_site --only-4xx --check-html --disable-external
+ brew install hugo
-publish: deps build
+ppublish: deps build
gsutil -m rsync -R _site/ gs://b.lumberjaph.net
gsutil -m acl ch -u AllUsers:R -R gs://b.lumberjaph.net/
gsutil -m web set -m index.html -e 404.html gs://b.lumberjaph.net
+.PHONY: clean server deps publish