add scripts
This commit is contained in:
parent
6875cccccc
commit
29ba12f018
4
build_app.sh
Normal file
4
build_app.sh
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
./.venv/bin/pyinstaller --noconfirm --clean --name car_ui --windowed ./main.py
|
||||||
5
run_ui.sh
Normal file
5
run_ui.sh
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
export DISPLAY=:0
|
||||||
|
./.venv/bin/python3 ./main.py
|
||||||
5
setup_venv.sh
Normal file
5
setup_venv.sh
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
python3 -m venv ./.venv
|
||||||
|
./.venv/bin/pip install -r ./requirements.txt
|
||||||
Loading…
x
Reference in New Issue
Block a user