Custom Transformation with dbt for API Connector to Postgres Sync

If your dbt_project.yml file is indeed in the dbt_learn directory and the dbt run command executes successfully in your local environment, it seems like there might be an issue with how Airbyte is trying to access your dbt project. One possible issue could be the way the project directory is being referenced in the Airbyte environment. In the forum post, a user encountered a similar issue and the support agent suggested editing the dbt_project.yml file to specify the paths for the target, log, and modules directories. Here’s the suggested configuration: yaml target-path: "../build" # directory which will store compiled SQL files log-path: "../logs" # directory which will store DBT logs modules-path: "../dbt_modules" # directory which will store external DBT dependencies You could try adjusting these paths in your dbt_project.yml file to see if it resolves the issue. If the issue persists, it might be helpful to reach out to the Airbyte community on their forum or Slack for further assistance.