Änderung: parquet_store.py

This commit is contained in:
knedlik
2026-03-01 13:11:28 +01:00
parent 20cd0b8547
commit 67170b8130
7 changed files with 83 additions and 10 deletions

11
config/settings.py Normal file
View File

@@ -0,0 +1,11 @@
from pathlib import Path
BASE_DIR = Path(__file__).resolve().parents[1]
STORAGE_DIR = BASE_DIR / "storage"
DB_DIR = STORAGE_DIR / "app_db"
DB_PATH = DB_DIR / "app.db"
DWH_DIR = STORAGE_DIR / "dwh"
print(BASE_DIR, DB_DIR)