Custom Transformation with dbt for API Connector to Postgres Sync

The error message you’re seeing indicates that dbt is unable to find the dbt_project.yml file in the specified directory. This file is crucial for dbt to recognize and run your project. Based on the information provided in the extracts, you might need to adjust the Entrypoint arguments for dbt cli to run the project in your Airbyte connection settings. As per the forum post, you should set the Entrypoint arguments for dbt cli to run the project as follows: run --select models/mart_employees.sql --project-dir=my-dbt-project-name Replace my-dbt-project-name with the actual name of your dbt project. Also, ensure that your dbt_project.yml file is located in the root directory of your dbt project. If it’s not, dbt won’t be able to find it and you’ll encounter the error you’re seeing. If you’re still encountering issues, you might want to validate your dbt project settings as described in the Airbyte documentation. This can help you identify any potential issues with your dbt project configuration.