staging #96

Merged
lmiranda merged 90 commits from staging into main 2026-02-01 21:33:13 +00:00
Showing only changes of commit 9a1fc81f79 - Show all commits

View File

@@ -28,6 +28,11 @@ from datetime import date
from pathlib import Path
from typing import Any
from dotenv import load_dotenv
# Load .env file so dbt can access POSTGRES_* environment variables
load_dotenv()
# Add project root to path
PROJECT_ROOT = Path(__file__).parent.parent.parent
sys.path.insert(0, str(PROJECT_ROOT))