profiler module moved from static config to environment dpendent config
This commit is contained in:
@@ -2,7 +2,12 @@ from sqlalchemy import create_engine
|
||||
from sqlalchemy.ext.declarative import declarative_base
|
||||
from sqlalchemy.orm import sessionmaker
|
||||
|
||||
SQLALCHEMY_DATABASE_URL = "sqlite:///./ovpn_profiler.db"
|
||||
from utils.config import get_config_value
|
||||
|
||||
# Support override via OVPMON_PROFILER_DB_PATH or config.ini
|
||||
db_path = get_config_value('profiler', 'db_path', fallback='./ovpn_profiler.db')
|
||||
SQLALCHEMY_DATABASE_URL = f"sqlite:///{db_path}"
|
||||
|
||||
|
||||
engine = create_engine(
|
||||
SQLALCHEMY_DATABASE_URL, connect_args={"check_same_thread": False}
|
||||
|
||||
Reference in New Issue
Block a user