aboutsummaryrefslogtreecommitdiff
path: root/justfile
diff options
context:
space:
mode:
authorSam Scholten2025-10-13 19:17:27 +1000
committerSam Scholten2025-10-13 19:51:43 +1000
commit62d4a04e2c2d6bff1a3ec9a90bc1a61927ef909f (patch)
tree743fb86c76c11b6cc7efcb70fc111218dea2b5a1 /justfile
parent6482423740314963b114af4b1827b667edcdfd19 (diff)
downloadpicostream-62d4a04e2c2d6bff1a3ec9a90bc1a61927ef909f.tar.gz
picostream-62d4a04e2c2d6bff1a3ec9a90bc1a61927ef909f.zip
New gui + packaging
Diffstat (limited to 'justfile')
-rw-r--r--justfile12
1 files changed, 12 insertions, 0 deletions
diff --git a/justfile b/justfile
new file mode 100644
index 0000000..478f4f3
--- /dev/null
+++ b/justfile
@@ -0,0 +1,12 @@
+set windows-shell := ["C:\\Program Files\\Git\\bin\\sh.exe","-c"]
+
+
+# Run the picostream GUI application
+gui:
+ PYTHONPATH=. uv run picostream/main.py
+
+# Build the picostream GUI executable
+build-gui:
+ uv pip install pyinstaller pyinstaller-hooks-contrib
+ uv run pyinstaller --onefile --windowed --name PicoStream picostream/main.py
+