mirror of
https://github.com/almet/notmyidea.git
synced 2025-04-28 11:32:39 +02:00
10 lines
220 B
Makefile
10 lines
220 B
Makefile
PELICAN=pelican
|
|
|
|
build:
|
|
$(PELICAN) -s pelican.conf.py content
|
|
|
|
upload: build
|
|
rsync -e "ssh -p 22" -P -rvz --delete output/* files:/home/www/notmyidea.org/blog
|
|
|
|
serve: build
|
|
cd output && python -m pelican.server 8000
|