feat: mv data folder to root

This commit is contained in:
qixinbo
2026-03-27 15:59:23 +08:00
parent 37070d7896
commit 5d479bed68
18 changed files with 175 additions and 39 deletions
+2 -2
View File
@@ -6,9 +6,9 @@ from app.models.datasource import DataSource
from app.schemas.mdl import MDLManifest, Model, Column, TableReference
from app.connectors.factory import get_connector
from app.database import SessionLocal
from app.core.data_root import get_data_root
# Assuming running from backend/ directory
MDL_STORAGE_PATH = Path("data/mdl")
MDL_STORAGE_PATH = get_data_root() / "mdl"
class MDLService:
@staticmethod