diff options
author | Dirk Engling <erdgeist@erdgeist.org> | 2020-06-02 18:33:32 +0200 |
---|---|---|
committer | Dirk Engling <erdgeist@erdgeist.org> | 2020-06-02 18:33:32 +0200 |
commit | b2fff1c0cb13d720e305f7835044da7360aab273 (patch) | |
tree | 3d3b3062e87c9f16c5756ba723e22134e5a24d05 /Makefile | |
parent | 6c61efddf9080194115106d6eaec7e57df66e1a2 (diff) |
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -7,9 +7,13 @@ build: venv/bin/nikola | |||
7 | ./venv/bin/nikola build --backend=sqlite3 | 7 | ./venv/bin/nikola build --backend=sqlite3 |
8 | 8 | ||
9 | venv/bin/nikola: venv/bin/python3 | 9 | venv/bin/nikola: venv/bin/python3 |
10 | ./venv/bin/pip install -U wheel "Nikola[extras]" | 10 | ./venv/bin/pip install -U wheel "Nikola[extras]" Flask-Dropzone |
11 | 11 | ||
12 | venv/bin/python3: | 12 | venv/bin/python3: |
13 | python3 -m venv ./venv | 13 | python3 -m venv ./venv |
14 | ./venv/bin/pip install --upgrade pip | 14 | ./venv/bin/pip install --upgrade pip |
15 | 15 | ||
16 | admin: venv/bin/python3 | ||
17 | ./venv/bin/python3 admin/admin.py | ||
18 | |||
19 | .PHONY: admin | ||