From 433c4d1ff6ca7e9767739faff2980df0d804c450 Mon Sep 17 00:00:00 2001 From: guz41 Date: Sat, 16 Dec 2023 07:04:02 +1000 Subject: [PATCH 1/3] Update manual-install-qs.md to remove steps that are no longer required dbt provides the correct names in the dbt_project.yml, therefore we can remove this step from the guide --- website/docs/guides/manual-install-qs.md | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/website/docs/guides/manual-install-qs.md b/website/docs/guides/manual-install-qs.md index e9c1af259ac..55b7992eb35 100644 --- a/website/docs/guides/manual-install-qs.md +++ b/website/docs/guides/manual-install-qs.md @@ -70,24 +70,6 @@ $ pwd -6. Update the following values in the `dbt_project.yml` file: - - - -```yaml -name: jaffle_shop # Change from the default, `my_new_project` - -... - -profile: jaffle_shop # Change from the default profile name, `default` - -... - -models: - jaffle_shop: # Change from `my_new_project` to match the previous value for `name:` - ... -``` - ## Connect to BigQuery From d4120269fbd1e2512845a044d710237dc283b29c Mon Sep 17 00:00:00 2001 From: mirnawong1 <89008547+mirnawong1@users.noreply.github.com> Date: Mon, 8 Jan 2024 12:25:51 +0000 Subject: [PATCH 2/3] Update manual-install-qs.md repurpose and help users confirm output --- website/docs/guides/manual-install-qs.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/website/docs/guides/manual-install-qs.md b/website/docs/guides/manual-install-qs.md index 55b7992eb35..e440e06c39b 100644 --- a/website/docs/guides/manual-install-qs.md +++ b/website/docs/guides/manual-install-qs.md @@ -72,9 +72,29 @@ $ pwd +6. dbt provides the following values in the `dbt_project.yml` file: + + + +```yaml +name: jaffle_shop # Change from the default, `my_new_project` + +... + +profile: jaffle_shop # Change from the default profile name, `default` + +... + +models: + jaffle_shop: # Change from `my_new_project` to match the previous value for `name:` + ... +``` + + + ## Connect to BigQuery -When developing locally, dbt connects to your using a [profile](/docs/core/connect-data-platform/connection-profiles), which is a YAML file with all the connection details to your warehouse. +When developing locally, dbt connects to your using a [profile](/docs/core/connect-data-platform/connection-profiles), which is a YAML file with all the connection details to your warehouse. 1. Create a file in the `~/.dbt/` directory named `profiles.yml`. 2. Move your BigQuery keyfile into this directory. From a66287fbf5c8db992e7504c22be4b241c61e6f86 Mon Sep 17 00:00:00 2001 From: mirnawong1 <89008547+mirnawong1@users.noreply.github.com> Date: Mon, 8 Jan 2024 12:42:10 +0000 Subject: [PATCH 3/3] Update manual-install-qs.md remove /file --- website/docs/guides/manual-install-qs.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/website/docs/guides/manual-install-qs.md b/website/docs/guides/manual-install-qs.md index e440e06c39b..fcd1e5e9599 100644 --- a/website/docs/guides/manual-install-qs.md +++ b/website/docs/guides/manual-install-qs.md @@ -70,8 +70,6 @@ $ pwd - - 6. dbt provides the following values in the `dbt_project.yml` file: