mirror of
https://github.com/almet/notmyidea.git
synced 2025-04-28 19:42:37 +02:00
15 lines
268 B
Makefile
15 lines
268 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
|
|
echo "blog.notmyidea.org" > output/CNAME
|
|
.v/bin/ghp-import -n output
|
|
git push origin gh-pages
|
|
git push
|