aboutsummaryrefslogtreecommitdiff
path: root/budget/default_settings.py
blob: 394ab001e9c24ff438910595b8d5774d8118cd80 (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"

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

try:
    from settings import *
except ImportError:
    pass