summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xrun.sh1
-rw-r--r--settings.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/run.sh b/run.sh
index 612ab58..b2931cc 100755
--- a/run.sh
+++ b/run.sh
@@ -4,4 +4,5 @@
FLASK_APP=kosten \
FLASK_ENV=development \
PYTHONDONTWRITEBYTECODE=1 \
+WERKZEUG_DEBUG_PIN=off \
flask "$@"
diff --git a/settings.py b/settings.py
index 76deacb..5bba9fc 100644
--- a/settings.py
+++ b/settings.py
@@ -4,6 +4,6 @@ import os
SECRET_KEY = os.urandom(42)
# database
-SQLALCHEMY_DATABASE_URI = "sqlite:///test.sqlite"
+SQLALCHEMY_DATABASE_URI = "sqlite:///../test.sqlite"
SQLALCHEMY_ECHO = True
SQLALCHEMY_TRACK_MODIFICATIONS = False