5 lines
291 B
Bash
5 lines
291 B
Bash
|
|
#!/bin/bash -e
|
||
|
|
cd "$(dirname "$0")"
|
||
|
|
source "./venv/bin/activate" || source "./venv/Scripts/activate" || :
|
||
|
|
python -O "./src/main.py" --no-edgetpu --no-tflite --no-autotest --sim-archiver --sim-printer --system-id=test-linux --no-autotest --no-lock --sim-io --dev-portal --auto-login-admin $*
|