mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +02:00
Félix Piédallu
ce58c792c7
* Use example_ynh as a template * Implement change_url * Use the new yunohost permissions system * Use a python3 venv * Use a systemd service + gunicorn * Allow multiple instances (stop installing in /opt/yunohost/ihatemoney)
12 lines
324 B
INI
12 lines
324 B
INI
DEBUG = True
|
|
SQLALCHEMY_DATABASE_URI = 'mysql+pymysql://__DB_USER__:__DB_PWD__@localhost/__DB_NAME__'
|
|
SQLACHEMY_ECHO = DEBUG
|
|
SECRET_KEY = "__SECRET_KEY__"
|
|
|
|
MAIL_DEFAULT_SENDER = ("Budget manager", "__MAILS_SENDER__")
|
|
__SUB_PATH_ONLY__APPLICATION_ROOT='__PATH__'
|
|
|
|
try:
|
|
from settings import *
|
|
except ImportError:
|
|
pass
|