calendarwatch_frontend/config.py

8 lines
214 B
Python
Raw Normal View History

import os
basedir = os.path.abspath(os.path.dirname(__file__))
class Config(object):
# ...
2020-05-27 20:06:43 +02:00
SQLALCHEMY_DATABASE_URI = 'mysql://user:pw@mariadb:3306/calendarwatch'
SQLALCHEMY_TRACK_MODIFICATIONS = False