diff options
author | EuAndreh <eu@euandre.org> | 2022-04-11 17:12:42 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-04-11 17:13:24 -0300 |
commit | 87e5af6397728c056abc72663e74b51e49691ddd (patch) | |
tree | d3a314f580383e733907cf473ccb6702f84f494c | |
parent | Add .well-known/security.txt (diff) | |
download | euandre.org-87e5af6397728c056abc72663e74b51e49691ddd.tar.gz euandre.org-87e5af6397728c056abc72663e74b51e49691ddd.tar.xz |
Makefile: Use $(JEKYLL) and include JEKYLL_ENV=production
-rw-r--r-- | Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -93,12 +93,13 @@ clean: $(derived-assets) \ torrent-files.txt files.mk deps.mk +JEKYLL = JEKYLL_ENV=production jekyll public: $(derived-assets) - jekyll build - -deploy: all - rsync -avzP public/ euandre.org:/home/user-data/www/default/ --delete + $(JEKYLL) build run: all open 'http://localhost:4000' - jekyll serve + $(JEKYLL) serve + +deploy: all + rsync -avzP public/ euandre.org:/home/user-data/www/default/ --delete |