Files
school_compare/pipeline/transform/profiles.yml
Tudor 72cbbf7778
All checks were successful
Build and Push Docker Images / Build Backend (FastAPI) (push) Successful in 34s
Build and Push Docker Images / Build Frontend (Next.js) (push) Successful in 1m7s
Build and Push Docker Images / Build Integrator (push) Successful in 56s
Build and Push Docker Images / Build Kestra Init (push) Successful in 31s
Build and Push Docker Images / Build Pipeline (Meltano + dbt + Airflow) (push) Successful in 1m30s
Build and Push Docker Images / Trigger Portainer Update (push) Successful in 1s
fix(dbt): simplify search_path to just public for PostGIS
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-26 21:47:01 +00:00

24 lines
704 B
YAML

school_compare:
target: dev
outputs:
dev:
type: postgres
host: "{{ env_var('PG_HOST', 'localhost') }}"
port: "{{ env_var('PG_PORT', '5432') | int }}"
user: "{{ env_var('PG_USER', 'postgres') }}"
password: "{{ env_var('PG_PASSWORD', 'postgres') }}"
dbname: "{{ env_var('PG_DATABASE', 'school_compare') }}"
schema: public
threads: 4
production:
type: postgres
host: "{{ env_var('PG_HOST') }}"
port: "{{ env_var('PG_PORT') | int }}"
user: "{{ env_var('PG_USER') }}"
password: "{{ env_var('PG_PASSWORD') }}"
dbname: "{{ env_var('PG_DATABASE') }}"
schema: public
search_path: public
threads: 4