aboutsummaryrefslogtreecommitdiff
path: root/justfile
blob: 478f4f37d2b1b1d3e6a7680a84b06e0677c49243 (plain)
1
2
3
4
5
6
7
8
9
10
11
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