diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-07-22 23:46:00 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-07-22 23:46:00 +0200 |
commit | 6f6c8af2a55fabb69372e3fc4e8504167805d018 (patch) | |
tree | 9325dacd967e1b3107276f4184138bec55c39e8a /run.sh | |
parent | a160280d8444e5c8ce1675bc667687c6239b0b01 (diff) | |
download | kosten-6f6c8af2a55fabb69372e3fc4e8504167805d018.tar.gz kosten-6f6c8af2a55fabb69372e3fc4e8504167805d018.tar.bz2 kosten-6f6c8af2a55fabb69372e3fc4e8504167805d018.zip |
Do not write bytecode for local debug running
Diffstat (limited to '')
-rwxr-xr-x | run.sh | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 "$@" |