From: Max Value Date: Sat, 17 Jan 2026 22:01:04 +0000 (+0000) Subject: Added makefile for more reliable local build X-Git-Url: https://git.ozva.co.uk/?a=commitdiff_plain;h=8d6b40af14e6a243546facf00060e9b3f6ed2368;p=bread Added makefile for more reliable local build will not switch server-side over yet --- diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8b0573a --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +all : .venv/touchfile + -mkdir build + -mkdir recipes + .venv/bin/python sous.py + +.venv/touchfile : requirements.txt + python3 -m venv .venv + .venv/bin/python -m pip install -r requirements.txt + touch .venv/touchfile diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..206d535 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +jinja2 +tqdm