mirror of
https://github.com/almet/notmyidea.git
synced 2025-04-28 19:42:37 +02:00
10 lines
209 B
Makefile
10 lines
209 B
Makefile
PELICAN=pelican
|
|
|
|
build:
|
|
$(PELICAN) -s pelican.conf.py content
|
|
|
|
upload: build
|
|
rsync -P -rvz --delete output/* artichaut:/home/www/blog.notmyidea.org
|
|
|
|
serve: build
|
|
cd output && python -m pelican.server 8000
|