diff options
Diffstat (limited to 'justfile')
| -rw-r--r-- | justfile | 12 |
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 + |
