mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-05-05 12:41:49 +02:00

When set to False (True by default), this setting will deactivate the demo project and ask for ADMIN_PASS for project creation Closes #108
14 lines
353 B
Python
14 lines
353 B
Python
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")
|
|
|
|
ADMIN_PASS = ""
|
|
|
|
PUBLIC_PROJECT_CREATION = True
|