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

MAIL_DEFAULT_SENDER = ("Budget manager", "budget@notmyidea.org")
APPLICATION_ROOT = '/'

try:
    from settings import *
except ImportError:
    pass