diff options
| author | Sam Scholten | 2025-10-13 19:17:27 +1000 |
|---|---|---|
| committer | Sam Scholten | 2025-10-13 19:51:43 +1000 |
| commit | 62d4a04e2c2d6bff1a3ec9a90bc1a61927ef909f (patch) | |
| tree | 743fb86c76c11b6cc7efcb70fc111218dea2b5a1 /justfile | |
| parent | 6482423740314963b114af4b1827b667edcdfd19 (diff) | |
| download | picostream-62d4a04e2c2d6bff1a3ec9a90bc1a61927ef909f.tar.gz picostream-62d4a04e2c2d6bff1a3ec9a90bc1a61927ef909f.zip | |
New gui + packaging
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..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 + |
