Skip to content

Commit ae149a4

Browse files
committed
readme
1 parent aedc07c commit ae149a4

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ pip install catalog-builder
5252
### 3.2 Create your first documentation configuration 👨‍💻
5353

5454
``` sh
55-
catalog download bigquery_public_data
55+
catalog download dbt_gitlab_data_team
5656
```
5757

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.
5959

6060

6161
> You will find in the folder:
@@ -74,18 +74,18 @@ To get started, let's download a catalog configuration example from the GitHub
7474
### 3.3 Build your catalog website 👾
7575

7676
``` sh
77-
catalog build bigquery_public_data
77+
catalog build dbt_gitlab_data_team
7878
```
7979

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).
8383
8484

8585
### 3.4 Run your catalog website locally ⚡
8686

8787
``` sh
88-
catalog serve bigquery_public_data
88+
catalog serve dbt_gitlab_data_team
8989
```
9090

9191
> You can now see the generated documentation website at http://localhost:8000.
@@ -96,7 +96,7 @@ catalog serve bigquery_public_data
9696
**A. To deploy on GitHub pages**:
9797

9898
``` sh
99-
catalog deploy github-pages bigquery_public_data
99+
catalog deploy github-pages dbt_gitlab_data_team
100100
```
101101

102102
> 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).
@@ -105,10 +105,10 @@ catalog deploy github-pages bigquery_public_data
105105
**B. To deploy on Google Cloud Storage Bucket**:
106106

107107
``` sh
108-
catalog deploy gcs bigquery_public_data
108+
catalog deploy gcs dbt_gitlab_data_team
109109
```
110110

111-
> 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/`
112112
113113

114114
**C. To deploy elsewhere**:

0 commit comments

Comments
 (0)