mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +02:00
11 lines
236 B
Python
11 lines
236 B
Python
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
|