aboutsummaryrefslogtreecommitdiff
path: root/justfile
diff options
context:
space:
mode:
authorSam Scholten2025-10-14 17:30:07 +1000
committerSam Scholten2025-10-14 17:30:07 +1000
commit14042a8f9e36f2bf61d23f60dfba223eafb58157 (patch)
treea80ea39e0a5bfc6609e5d27bc8d6c689e1bb5e43 /justfile
parent6482423740314963b114af4b1827b667edcdfd19 (diff)
downloadpicostream-14042a8f9e36f2bf61d23f60dfba223eafb58157.tar.gz
picostream-14042a8f9e36f2bf61d23f60dfba223eafb58157.zip
Merge 'packaging' branch into main
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..237121f
--- /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 --clean PicoStream.spec --noconfirm
+