fix: disable pyc caching in start.sh to prevent stale bytecode

This commit is contained in:
Oliver Hofmann 2026-05-17 12:09:39 +02:00
parent 2c948914ea
commit 7c6aa4ccd7

View File

@ -9,4 +9,4 @@ if [ ! -d ".venv" ]; then
.venv/bin/playwright install chromium
fi
.venv/bin/python main.py "$@"
PYTHONDONTWRITEBYTECODE=1 .venv/bin/python main.py "$@"