mirror of
https://github.com/almet/notmyidea.git
synced 2025-04-27 19:12:39 +02:00
13 lines
223 B
Makefile
13 lines
223 B
Makefile
|
|
install:
|
|
python3 -m venv .v
|
|
.v/bin/pip install -r requirements.txt
|
|
mkdir output
|
|
|
|
regenerate:
|
|
.v/bin/pelican -lr
|
|
|
|
publish:
|
|
.v/bin/pelican -s publishconf.py
|
|
rsync -qazP output/. notmyidea:blog.notmyidea.org/
|
|
git push
|