├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── README.md ├── RELEASING.md ├── core ├── __init__.py └── main.py ├── etc └── lookml-projects │ └── .github │ └── pull_request_template.md ├── requirements-dev.txt ├── requirements.txt ├── setup.py └── starter-project ├── .github ├── issue_template.md └── pull_request_template.md ├── .gitignore ├── README.md ├── analysis └── .gitkeep ├── data └── .gitkeep ├── dbt_project.yml ├── macros ├── .gitkeep ├── generate_schema_name.sql └── grant_select_on_schemas.sql ├── models ├── admin │ └── warehouse_operation.sql ├── marts │ └── .gitkeep └── staging │ └── .gitkeep ├── packages.yml ├── sample.profiles.yml ├── snapshots └── .gitkeep └── tests └── .gitkeep /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-init/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .python-version 2 | *.pyc 3 | *.egg-info 4 | build/ 5 | dist/ 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-init/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-init/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-init/HEAD/RELEASING.md -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-init/HEAD/core/main.py -------------------------------------------------------------------------------- /etc/lookml-projects/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-init/HEAD/etc/lookml-projects/.github/pull_request_template.md -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | -e . 2 | ipdb 3 | twine 4 | wheel 5 | black 6 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -e . 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-init/HEAD/setup.py -------------------------------------------------------------------------------- /starter-project/.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-init/HEAD/starter-project/.github/issue_template.md -------------------------------------------------------------------------------- /starter-project/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-init/HEAD/starter-project/.github/pull_request_template.md -------------------------------------------------------------------------------- /starter-project/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | target/ 3 | dbt_modules/ 4 | logs/ 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /starter-project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-init/HEAD/starter-project/README.md -------------------------------------------------------------------------------- /starter-project/analysis/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /starter-project/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /starter-project/dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-init/HEAD/starter-project/dbt_project.yml -------------------------------------------------------------------------------- /starter-project/macros/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /starter-project/macros/generate_schema_name.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-init/HEAD/starter-project/macros/generate_schema_name.sql -------------------------------------------------------------------------------- /starter-project/macros/grant_select_on_schemas.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-init/HEAD/starter-project/macros/grant_select_on_schemas.sql -------------------------------------------------------------------------------- /starter-project/models/admin/warehouse_operation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-init/HEAD/starter-project/models/admin/warehouse_operation.sql -------------------------------------------------------------------------------- /starter-project/models/marts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /starter-project/models/staging/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /starter-project/packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-init/HEAD/starter-project/packages.yml -------------------------------------------------------------------------------- /starter-project/sample.profiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-init/HEAD/starter-project/sample.profiles.yml -------------------------------------------------------------------------------- /starter-project/snapshots/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /starter-project/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------