1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ihatemoney_ynh.git synced 2024-09-03 19:26:15 +02:00
ihatemoney_ynh/conf/ihatemoney.cfg
Jocelyn Delalande bb40c91db7 [fix] Adapt to new ihatemoney settings behaviour
Since v1.0 ihatemoney reads its settings from /etc/ihatemoney/ihatemoney.cfg

See https://github.com/spiral-project/ihatemoney/pull/193
2017-06-21 17:10:26 +02:00

12 lines
288 B
INI

DEBUG = True
SQLALCHEMY_DATABASE_URI = 'mysql://ihatemoney:MY_MYSQL_PW@localhost/ihatemoney'
SQLACHEMY_ECHO = DEBUG
SECRET_KEY = "MY_SECRET_KEY"
MAIL_DEFAULT_SENDER = ("Budget manager", "MY_EMAIL")
APPLICATION_ROOT='MY_PATH'
try:
from settings import *
except ImportError:
pass