You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+10-10
Original file line number
Diff line number
Diff line change
@@ -52,10 +52,10 @@ pip install catalog-builder
52
52
### 3.2 Create your first documentation configuration 👨💻
53
53
54
54
```sh
55
-
catalog download bigquery_public_data
55
+
catalog download dbt_gitlab_data_team
56
56
```
57
57
58
-
To get started, let's download a catalog configuration example from the GitHub repo and play with it. The above command will download the [`catalogs/bigquery_public_data`](https://github.com/unytics/catalog_builder/tree/main/catalogs/bigquery_public_data) folder on your laptop.
58
+
To get started, let's download a catalog configuration example from the GitHub repo and play with it. The above command will download the [`catalogs/dbt_gitlab_data_team`](https://github.com/unytics/catalog_builder/tree/main/catalogs/dbt_gitlab_data_team) folder on your laptop.
59
59
60
60
61
61
> You will find in the folder:
@@ -74,18 +74,18 @@ To get started, let's download a catalog configuration example from the GitHub
74
74
### 3.3 Build your catalog website 👾
75
75
76
76
```sh
77
-
catalog build bigquery_public_data
77
+
catalog build dbt_gitlab_data_team
78
78
```
79
79
80
-
> 1. For each asset of the `assets file`, the jinja template of `asset_type` will be rendered using the asset `data` to generate a markdown file which will be written into `catalogs/bigquery_public_data/docs/` at `documentation_path`.
81
-
> 2. All files in `catalogs/bigquery_public_data/source_docs/` are copied into `catalogs/bigquery_public_data/docs/`
82
-
> 3. Mkdocs will then build the documentation website from the markdown files into `catalogs/bigquery_public_data/site` (using `mkdocs.yml` configuration file).
80
+
> 1. For each asset of the `assets file`, the jinja template of `asset_type` will be rendered using the asset `data` to generate a markdown file which will be written into `catalogs/dbt_gitlab_data_team/docs/` at `documentation_path`.
81
+
> 2. All files in `catalogs/dbt_gitlab_data_team/source_docs/` are copied into `catalogs/dbt_gitlab_data_team/docs/`
82
+
> 3. Mkdocs will then build the documentation website from the markdown files into `catalogs/dbt_gitlab_data_team/site` (using `mkdocs.yml` configuration file).
83
83
84
84
85
85
### 3.4 Run your catalog website locally ⚡
86
86
87
87
```sh
88
-
catalog serve bigquery_public_data
88
+
catalog serve dbt_gitlab_data_team
89
89
```
90
90
91
91
> You can now see the generated documentation website at http://localhost:8000.
> Mkdocs will [deploy the site on GitHub pages](https://www.mkdocs.org/user-guide/deploying-your-docs/) (this only works if you are on a github repository).
> Mkdocs will copy all the files in `catalogs/bigquery_public_data/site` to the bucket defined by `site_url` value of `catalogs/bigquery_public_data/mkdocs.yml`. For instance if the site url is `http://catalogs.unytics.io/bigquery_public_data/` it will copy all files under `catalogs/bigquery_public_data/site` to `gs://catalogs.unytics.io/bigquery_public_data/`
111
+
> Mkdocs will copy all the files in `catalogs/dbt_gitlab_data_team/site` to the bucket defined by `site_url` value of `catalogs/dbt_gitlab_data_team/mkdocs.yml`. For instance if the site url is `http://catalogs.unytics.io/dbt_gitlab_data_team/` it will copy all files under `catalogs/dbt_gitlab_data_team/site` to `gs://catalogs.unytics.io/dbt_gitlab_data_team/`
0 commit comments