small docs details
This commit is contained in:
parent
dd4fa59ab4
commit
f6912547b3
2 changed files with 3 additions and 3 deletions
|
|
@ -13,7 +13,7 @@ Welcome to Superhog's DWH dbt project. Here we model the entire DWH.
|
||||||
- The current recommended route is to use the data VPN. You can ask Pablo to help you set it up.
|
- The current recommended route is to use the data VPN. You can ask Pablo to help you set it up.
|
||||||
- Set up
|
- Set up
|
||||||
- Create a virtual environment for the project with `python3 -m venv venv`.
|
- Create a virtual environment for the project with `python3 -m venv venv`.
|
||||||
- Activate the virtual environment and run `pip install requirements.txt`
|
- Activate the virtual environment and run `pip install -r requirements.txt`
|
||||||
- Create an entry for this project `profiles.yml` file at `~/.dbt/profiles.yml`. You have a suggested template at `profiles.yml.example`
|
- Create an entry for this project `profiles.yml` file at `~/.dbt/profiles.yml`. You have a suggested template at `profiles.yml.example`
|
||||||
- Make sure that the `profiles.yml` host and port settings are consistent with whatever networking approach you've taken.
|
- Make sure that the `profiles.yml` host and port settings are consistent with whatever networking approach you've taken.
|
||||||
- Check
|
- Check
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ dwh_dbt:
|
||||||
outputs:
|
outputs:
|
||||||
dev:
|
dev:
|
||||||
dbname: dwh
|
dbname: dwh
|
||||||
host: localhost
|
host: <your-host>
|
||||||
user: <your-user>
|
user: <your-user>
|
||||||
pass: <your-password>
|
pass: <your-password>
|
||||||
port: <the local port for your ssh tunnel>
|
port: <the local port for your ssh tunnel>
|
||||||
|
|
@ -12,7 +12,7 @@ dwh_dbt:
|
||||||
|
|
||||||
prd:
|
prd:
|
||||||
dbname: dwh
|
dbname: dwh
|
||||||
host: localhost
|
host: <your-host>
|
||||||
user: <prd-dbt-user>
|
user: <prd-dbt-user>
|
||||||
pass: <prd-dbt-password>
|
pass: <prd-dbt-password>
|
||||||
port: <the local port for your ssh tunnel>
|
port: <the local port for your ssh tunnel>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue