aboutsummaryrefslogtreecommitdiff
path: root/budget/default_settings.py
blob: 111abf26cd3913d70efa53d514b69e7c4d6a9827 (plain)
1
2
3
4
5
6
7
8
9
10
11
DEBUG = False
SQLALCHEMY_DATABASE_URI = 'sqlite:///budget.db'
SQLACHEMY_ECHO = DEBUG
SECRET_KEY = "tralala"

DEFAULT_MAIL_SENDER = ("Budget manager", "budget@notmyidea.org")

try:
    from settings import *
except ImportError:
    pass