tofu-api/tofu_api/common/config/defaults.py

14 lines
232 B
Python

__all__ = [
'DefaultConfig',
]
class DefaultConfig:
"""
This class defines default values for the app configuration.
"""
# Database configuration
SQLALCHEMY_DATABASE_URI = None
SQLALCHEMY_ECHO = False