10 lines
247 B
Python
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
|