blob: b55d627057411090f54e4e46555b10904f88cefa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
.PHONY: deploy
serve:
hugo server --gc --noBuildLock
deploy:
git add .
git ci -m "Auto-commit $(shell date '+%Y-%m-%d')"
git push
rm -rf public
hugo --gc --noBuildLock
rsync -avz --delete public/ neonxp@neonxp.ru:/var/www/neonxp.ru
post:
hugo new content posts/$(shell date '+%Y-%m-%d')-$(name)/index.md
|