{"id":22793396,"url":"https://github.com/fivetran/dbt_starter_project","last_synced_at":"2026-01-21T07:25:43.887Z","repository":{"id":48851240,"uuid":"310698530","full_name":"fivetran/dbt_starter_project","owner":"fivetran","description":"Fivetran's starter project which acts as the foundation to building dbt packages","archived":false,"fork":false,"pushed_at":"2025-09-18T22:56:34.000Z","size":885,"stargazers_count":6,"open_issues_count":2,"forks_count":0,"subscribers_count":43,"default_branch":"main","last_synced_at":"2025-09-19T00:44:44.017Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fivetran.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-11-06T20:25:03.000Z","updated_at":"2025-07-23T14:23:37.000Z","dependencies_parsed_at":"2024-07-29T20:20:19.009Z","dependency_job_id":null,"html_url":"https://github.com/fivetran/dbt_starter_project","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/fivetran/dbt_starter_project","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fivetran%2Fdbt_starter_project","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fivetran%2Fdbt_starter_project/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fivetran%2Fdbt_starter_project/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fivetran%2Fdbt_starter_project/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fivetran","download_url":"https://codeload.github.com/fivetran/dbt_starter_project/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fivetran%2Fdbt_starter_project/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28629915,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T04:47:28.174Z","status":"ssl_error","status_checked_at":"2026-01-21T04:47:22.943Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-12T03:19:43.054Z","updated_at":"2026-01-21T07:25:43.873Z","avatar_url":"https://github.com/fivetran.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003e Fivetran's starter project which acts as the foundation to building dbt packages\n\u003e Here's a template of the README for both transformation + source packages\n\n# [Connector Name] ([docs](home page of the netlify-hosted docs site)) \n\nThis package models [connector name] data from [Fivetran's connector](https://fivetran.com/docs/applications/connector). It uses data in the format described by [this ERD](link to the connector ERD).\n\n[High level objective of package]. It achieves this by:\n- [major thing the package does #1]\n- [ #2 ] \n- [ #3]\n...\n\n## Compatibility (if needed)\n\u003e Please be aware the [dbt_connector](https://github.com/fivetran/dbt_connector) and [dbt_connector_source](https://github.com/fivetran/dbt_connector_source) packages will only work with the [Fivetran connector schema](https://fivetran.com/docs/applications/connector/changelog) released after [some date]. If your Jira connector was set up prior to [some date], you will need to fully resync or set up a new [connector name] connector in order for the Fivetran dbt [connector] packages to work.\n\n\n## Models - transformation package version\n\nThis package contains transformation models, designed to work simultaneously with our [Connector source package](link to source package repo). A dependency on the source package is declared in this package's `packages.yml` file, so it will automatically download when you run `dbt deps`. The primary outputs of this package are described below. Intermediate models are used to create these output models.\n\n| **model**                | **description**                                                                                                                                |\n| ------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------- |\n| [conector__model_1](link to model sql file on github)             | toot toot |\n| [conector__model_2](link to model sql file on github)             | beep beep |\n\n## Models - source package version\n\nThis package contains staging models, designed to work simultaneously with our [Connector modeling package](link to transformation package repo).  The staging models:\n* Remove any rows that are soft-deleted\n* Name columns consistently across all packages:\n    * Boolean fields are prefixed with `is_` or `has_`\n    * Timestamps are appended with `_at`\n    * ID primary keys are prefixed with the name of the table.  For example, a user table's ID column is renamed user_id.\n    * Foreign keys include the table that they refer to. For example, a project table's owner ID column is renamed owner_user_id.\n* [anything else?]\n\n## Installation Instructions\nCheck [dbt Hub](https://hub.getdbt.com/) for the latest installation instructions, or [read the dbt docs](https://docs.getdbt.com/docs/package-management) for more information on installing packages.\n\n## Configuration\nBy default, this package looks for your [Connector] data in the `[connector_name]` schema of your [target database](https://docs.getdbt.com/docs/running-a-dbt-project/using-the-command-line-interface/configure-your-profile). If this is not where your [Connector] data is, add the following configuration to your `dbt_project.yml` file:\n\n```yml\n# dbt_project.yml\n\n...\nconfig-version: 2\n\nvars:\n    connector_database: your_database_name\n    connector_schema: your_schema_name \n```\n\n### any additional configurations (ie variables)\n[brief explanation]\n\nIf you want to [do something], add the following variable to your `dbt_project.yml` file:\n\n```yml\n# dbt_project.yml\n\n...\nconfig-version: 2\n\nvars:\n  connector:\n    CONNECTOR__example_list_variable: ['the', 'list', 'of', 'values']\n```\n\n### Changing the Build Schema\nBy default this package will build the CONNECTOR staging models within a schema titled (\u003ctarget_schema\u003e + `_stg_CONNECTOR`) and the CONNECTOR final models with a schema titled (\u003ctarget_schema\u003e + `_CONNECTOR`) in your target database. If this is not where you would like your modeled CONNECTOR data to be written to, add the following configuration to your `dbt_project.yml` file:\n\n```yml\n# dbt_project.yml\n\n...\nmodels:\n  CONNECTOR:\n    +schema: my_new_schema_name # leave blank for just the target_schema\n  CONNECTOR_source:\n    +schema: my_new_schema_name # leave blank for just the target_schema\n```\n\n## Contributions\nDon't see a model or specific metric you would have liked to be included? Notice any bugs when installing \nand running the package? If so, we highly encourage and welcome contributions to this package! \nPlease create issues or open PRs against `master`. Check out [this post](https://discourse.getdbt.com/t/contributing-to-a-dbt-package/657) on the best workflow for contributing to a package.\n\n## Database Support\nThis package has been tested on BigQuery, Snowflake and Redshift.\nComing soon -- compatibility with Spark\n\n## Resources:\n- Provide [feedback](https://www.surveymonkey.com/r/DQ7K7WW) on our existing dbt packages or what you'd like to see next\n- Have questions, feedback, or need help? Book a time during our office hours [here](https://calendly.com/fivetran-solutions-team/fivetran-solutions-team-office-hours) or email us at solutions@fivetran.com\n- Find all of Fivetran's pre-built dbt packages in our [dbt hub](https://hub.getdbt.com/fivetran/)\n- Learn how to orchestrate dbt transformations with Fivetran [here](https://fivetran.com/docs/transformations/dbt)\n- Learn more about Fivetran overall [in our docs](https://fivetran.com/docs)\n- Check out [Fivetran's blog](https://fivetran.com/blog)\n- Learn more about dbt [in the dbt docs](https://docs.getdbt.com/docs/introduction)\n- Check out [Discourse](https://discourse.getdbt.com/) for commonly asked questions and answers\n- Join the [chat](http://slack.getdbt.com/) on Slack for live discussions and support\n- Find [dbt events](https://events.getdbt.com) near you\n- Check out [the dbt blog](https://blog.getdbt.com/) for the latest news on dbt's development and best practices\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffivetran%2Fdbt_starter_project","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffivetran%2Fdbt_starter_project","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffivetran%2Fdbt_starter_project/lists"}