diff options
author | Charlie Root <root@web.ccc.local> | 2020-05-26 22:45:15 +0000 |
---|---|---|
committer | Charlie Root <root@web.ccc.local> | 2020-05-26 22:45:15 +0000 |
commit | daf20dd652f9294273c1110f60ff4da6d99f67c5 (patch) | |
tree | 13bf0ee020cd847fa8c1a452c680948e3d99239d /Makefile | |
parent | ba279352885269d921e71ff7f5314b5b21dc58b7 (diff) |
Commit preview bundle
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..dc8268d8 --- /dev/null +++ b/Makefile | |||
@@ -0,0 +1,11 @@ | |||
1 | all: install build serve | ||
2 | |||
3 | install: venv | ||
4 | python3 -m venv ./venv | ||
5 | ./venv/bin/pip install -U "Nikola[extras]" | ||
6 | |||
7 | build: | ||
8 | ./venv/bin/nikola build --backend=sqlite3 | ||
9 | |||
10 | serve: | ||
11 | ./venv/bin/nikola auto --backend=sqlite3 | ||