ssl_monitor/config.py
Mateusz Gruszczyński 2a065aba3b commit
2025-03-18 12:53:33 +01:00

10 lines
247 B
Python

# config.py
import os
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
class Config:
SECRET_KEY = 'secret'
SQLALCHEMY_DATABASE_URI = f'sqlite:///{os.path.join(BASE_DIR, "ssl_monitor.db")}'
SQLALCHEMY_TRACK_MODIFICATIONS = False