typos and touches

This commit is contained in:
Pablo Martin 2025-04-08 12:32:56 +02:00
parent 184ea4dec5
commit 3428231ad7
2 changed files with 3 additions and 3 deletions

View file

@ -24,8 +24,8 @@ If you don't have this, it probably means you need to review our Infrastructure
- SSH into the CI VM.
- Create a folder in the user home directory named `dbt-ci`.
- Create a copy of the `ci/ci.env` file there naming it `.env` (assuming you're in the repo root dir, `cp ci/ci.env ~/dbt-ci/.env`) and fill it with values of your choice.
- Modify the `docker-compose.yml` file with values for the Postgres server parameters. Which values to set depend on your hardware. If you don't want or can't decide values for these parameters, you can just comment the lines.
- Enter the `ci` folder and execute the script named `ci-vm-setup.sh` in with `.env` file you just filled in sourced (you can run this: `(set -a && source ~/dbt-ci/.env && set +a && bash ci-vm-setup.sh)`). This script will take care of most of the setup that need to be executed, including:
- Copy the `docker-compose.yml` file into `dbt-ci`. Modify your copy with values for the Postgres server parameters. Which values to set depend on your hardware. If you don't want or can't decide values for these parameters, you can just comment the lines.
- Enter the `ci` folder and execute the script named `ci-vm-setup.sh` in with `.env` file you just filled in sourced (you can run this: `(set -a && source ~/dbt-ci/.env && set +a && bash ci-vm-setup.sh)`). This script will take care of most of the setup that need to be executed, including:
- Preparing the postgres database.
- Setting up the dockerized postgres with the right database, FDW, etc.
- Prepare the `profiles.yml` file.

View file

@ -1,5 +1,5 @@
# Start container
docker compose --env-file ~/dbt-ci/.env up -d
docker compose -f ~/dbt-ci/docker-compose.yml --env-file ~/dbt-ci/.env up -d
# Run script to set things up in Postgres (DB, FDWs, etc)