diff --git a/budget/default_settings.py b/budget/default_settings.py index d5a9a9b3..5ee6de80 100644 --- a/budget/default_settings.py +++ b/budget/default_settings.py @@ -1,6 +1,10 @@ DEBUG = False SQLALCHEMY_DATABASE_URI = 'sqlite:///budget.db' SQLACHEMY_ECHO = DEBUG +# Will likely become the default value in flask-sqlalchemy >=3 ; could be removed +# then: +SQLALCHEMY_TRACK_MODIFICATIONS = False + SECRET_KEY = "tralala" MAIL_DEFAULT_SENDER = ("Budget manager", "budget@notmyidea.org")