Welcome to your new dbt project!
Try running the following commands:
- dbt run
- dbt test
- Learn more about dbt in the docs
- Check out Discourse for commonly asked questions and answers
- Join the chat on Slack for live discussions and support
- Find dbt events near you
- Check out the blog for the latest news on dbt's development and best practices
conda create -n mlops-dbt python=3.9
conda activate mlops-dbt
pip install dbt-postgres
dbt --versionCon el siguiente comando se crea el repo y se configura la db
dbt init db_postgresEn el archivo de configuración `~/.dbt/profiles.yml` se debe configurar la base de datos
```yaml
dbt_elt:
outputs:
dev:
type: postgres
threads: 1
host: localhost
port: 5432
user: postgres
pass: mysecretpassword
dbname: mlops
schema: target
dbt debug
dbt run