]> OzVa Git service - bread/commitdiff
Added makefile for more reliable local build
authorMax Value <greenwoodw50@gmail.com>
Sat, 17 Jan 2026 22:01:04 +0000 (22:01 +0000)
committerMax Value <greenwoodw50@gmail.com>
Sat, 17 Jan 2026 22:01:04 +0000 (22:01 +0000)
will not switch server-side over yet

Makefile [new file with mode: 0644]
requirements.txt [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
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 (file)
index 0000000..206d535
--- /dev/null
@@ -0,0 +1,2 @@
+jinja2
+tqdm