Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pankajastro committed Jul 23, 2024
1 parent 39b2f74 commit cc16402
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions dev/dags/jaffle_shop_kubernetes.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
https://astronomer.github.io/astronomer-cosmos/getting_started/kubernetes.html#kubernetes
"""
import os
from pathlib import Path

from airflow import DAG
Expand All @@ -25,8 +26,9 @@
)
from cosmos.profiles import PostgresUserPasswordProfileMapping


PROJECT_DIR = Path("dags/dbt/jaffle_shop/")
DEFAULT_DBT_ROOT_PATH = Path(__file__).parent / "dbt"
DBT_ROOT_PATH = Path(os.getenv("DBT_ROOT_PATH", DEFAULT_DBT_ROOT_PATH))
PROJECT_DIR = DBT_ROOT_PATH / "jaffle_shop"
DBT_IMAGE = "dbt-jaffle-shop:1.0.0"

project_seeds = [
Expand Down

0 comments on commit cc16402

Please sign in to comment.