summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xrun.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/run.sh b/run.sh
index 6d47880..c8bcb03 100755
--- a/run.sh
+++ b/run.sh
@@ -1,4 +1,7 @@
#!/bin/sh
# For running from the cmdline in Debug Mode
-FLASK_APP=app FLASK_ENV=development flask "$@"
+FLASK_APP=app \
+FLASK_ENV=development \
+PYTHONDONTWRITEBYTECODE=1 \
+flask "$@"