Logging additions

This commit is contained in:
Josako
2024-04-28 22:16:11 +02:00
parent f4decbc0cd
commit 667bca0e42
4 changed files with 46 additions and 6 deletions

View File

@@ -20,23 +20,21 @@ class Config(object):
SECURITY_POST_LOGIN_VIEW = '/user/tenant'
SECURITY_RECOVERABLE = True
# flask-mailman settings
MAIL_SERVER = 'mail.flow-it.net'
MAIL_PORT = 465
MAIL_USE_TLS = True
MAIL_USE_SSL = False
MAIL_DEFAULT_SENDER = 'eveAI Admin <eveai_admin@flow-it.net>'
MAIL_DEFAULT_SENDER = ('eveAI Admin', 'eveai_admin@flow-it.net')
class DevConfig(Config):
DEVELOPMENT = True
DEBUG = True
FLASK_DEBUG = True
SQLALCHEMY_DATABASE_URI = 'postgresql+pg8000://josako@localhost:5432/eveAI'
SQLALCHEMY_BINDS = {'public': 'postgresql+pg8000://josako@localhost:5432/eveAI'}
EXPLAIN_TEMPLATE_LOADING = True
EXPLAIN_TEMPLATE_LOADING = False
# flask-mailman settings
MAIL_USERNAME = 'eveai_super@flow-it.net'