Adapt this repo to my needs

- remove homeassistant stuff
- flesh out a featureful cli script
This commit is contained in:
2025-09-09 02:06:13 -07:00
parent e08db60e0c
commit 504edf23e9
15 changed files with 224 additions and 395 deletions

8
compile Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
NAME="compile"
docker buildx build . -t $NAME
docker run -v $PWD:/opt/compile --rm -w "/opt/compile" $NAME bash -c "pipenv install;pipenv run pyinstaller -F src/vac.py"