├── .env.example ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── dbt_code_location ├── Dockerfile ├── dbt_project │ ├── .gitignore │ ├── dbt_project.yml │ ├── macros │ │ └── .gitkeep │ ├── models │ │ ├── marts │ │ │ ├── bridge_pedidos_motivo_venda.sql │ │ │ ├── bridge_pedidos_motivo_venda.yml │ │ │ ├── dim_cartao.sql │ │ │ ├── dim_cartao.yml │ │ │ ├── dim_cliente.sql │ │ │ ├── dim_cliente.yml │ │ │ ├── dim_data_venda.sql │ │ │ ├── dim_data_venda.yml │ │ │ ├── dim_localidade.sql │ │ │ ├── dim_localidade.yml │ │ │ ├── dim_motivo_venda.sql │ │ │ ├── dim_motivo_venda.yml │ │ │ ├── dim_produto.sql │ │ │ ├── dim_produto.yml │ │ │ ├── fct_linhas_pedidos.sql │ │ │ └── fct_linhas_pedidos.yml │ │ └── staging │ │ │ ├── sources.yml │ │ │ ├── stg_cabecalho_pedido.sql │ │ │ ├── stg_cabecalho_pedido.yml │ │ │ ├── stg_cartao.sql │ │ │ ├── stg_cartao.yml │ │ │ ├── stg_cliente.sql │ │ │ ├── stg_cliente.yml │ │ │ ├── stg_detalhamento_pedido.sql │ │ │ ├── stg_detalhamento_pedido.yml │ │ │ ├── stg_endereco.sql │ │ │ ├── stg_endereco.yml │ │ │ ├── stg_estado.sql │ │ │ ├── stg_estado.yml │ │ │ ├── stg_motivo_venda.sql │ │ │ ├── stg_motivo_venda.yml │ │ │ ├── stg_pais.sql │ │ │ ├── stg_pais.yml │ │ │ ├── stg_pedidos_motivo_venda.sql │ │ │ ├── stg_pedidos_motivo_venda.yml │ │ │ ├── stg_pessoa.sql │ │ │ ├── stg_pessoa.yml │ │ │ ├── stg_produto.sql │ │ │ └── stg_produto.yml │ ├── packages.yml │ ├── profiles.yml │ ├── snapshots │ │ └── .gitkeep │ └── tests │ │ ├── .gitkeep │ │ ├── generic │ │ ├── test_not_greater_than.sql │ │ ├── test_not_negative.sql │ │ └── test_positive.sql │ │ └── total_vendido_2011.sql ├── definitions │ ├── __init__.py │ ├── assets.py │ ├── automation.py │ ├── resource.py │ └── translator.py ├── requirements.txt └── rsa_key.p8.example ├── el_code_location ├── Dockerfile ├── definitions │ ├── __init__.py │ ├── assets.py │ ├── automation.py │ ├── partitions.py │ ├── resources.py │ └── translators.py ├── dlt_config │ ├── __init__.py │ ├── destination.py │ └── source.py ├── requirements.txt ├── rsa_key.p8.example └── sling_config │ └── replication.yaml ├── infra ├── base │ ├── bucket.tf │ ├── main.tf │ ├── postgres.tf │ ├── postgres_sg.tf │ ├── variables.tf │ └── vpc.tf ├── config.s3.tfbackend ├── core │ ├── alb.tf │ ├── dns.tf │ ├── ecr_credentials.tf │ ├── ecs_cluster.tf │ ├── main.tf │ ├── postgres_credentials.tf │ ├── tls_certificate.tf │ └── variables.tf ├── dagster │ ├── docker │ │ ├── Dockerfile │ │ ├── dagster.yaml │ │ ├── requirements-dagster.txt │ │ ├── requirements-webserver.txt │ │ └── workspace.yaml │ ├── ecr.tf │ ├── images.tf │ ├── main.tf │ ├── outputs.tf │ ├── services.tf │ └── variables.tf ├── locations │ ├── dbt_secrets.tf │ ├── ecr.tf │ ├── el_secrets.tf │ ├── images.tf │ ├── main.tf │ ├── services.tf │ └── variables.tf └── terraform.tfvars.example ├── requirements.txt ├── scripts ├── deploy.sh ├── migrate.sh ├── reset.sh └── retract.sh └── source_data └── sap_adventure_works ├── human_resources ├── department.csv ├── employee.csv ├── employeedepartmenthistory.csv ├── employeepayhistory.csv ├── jobcandidate.csv └── shift.csv ├── person ├── address.csv ├── addresstype.csv ├── businessentity.csv ├── businessentityaddress.csv ├── businessentitycontact.csv ├── contacttype.csv ├── countryregion.csv ├── emailaddress.csv ├── person.csv ├── personphone.csv ├── phonenumbertype.csv └── stateprovince.csv ├── production ├── billofmaterials.csv ├── culture.csv ├── illustration.csv ├── location.csv ├── product.csv ├── productcategory.csv ├── productcosthistory.csv ├── productdescription.csv ├── productdocument.csv ├── productinventory.csv ├── productlistpricehistory.csv ├── productmodel.csv ├── productmodelillustration.csv ├── productmodelproductdescriptionculture.csv ├── productproductphoto.csv ├── productsubcategory.csv ├── scrapreason.csv ├── transactionhistory.csv ├── transactionhistoryarchive.csv ├── unitmeasure.csv ├── workorder.csv └── workorderrouting.csv ├── purchasing ├── productvendor.csv ├── purchaseorderdetail.csv ├── purchaseorderheader.csv ├── shipmethod.csv └── vendor.csv └── sales ├── countryregioncurrency.csv ├── creditcard.csv ├── currency.csv ├── currencyrate.csv ├── customer.csv ├── personcreditcard.csv ├── salesorderdetail.csv ├── salesorderheader.csv ├── salesorderheadersalesreason.csv ├── salesperson.csv ├── salespersonquotahistory.csv ├── salesreason.csv ├── salestaxrate.csv ├── salesterritory.csv ├── salesterritoryhistory.csv ├── shoppingcartitem.csv ├── specialoffer.csv ├── specialofferproduct.csv └── store.csv /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/README.md -------------------------------------------------------------------------------- /dbt_code_location/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/Dockerfile -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/.gitignore -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/dbt_project.yml -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/macros/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/marts/bridge_pedidos_motivo_venda.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/marts/bridge_pedidos_motivo_venda.sql -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/marts/bridge_pedidos_motivo_venda.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/marts/bridge_pedidos_motivo_venda.yml -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/marts/dim_cartao.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/marts/dim_cartao.sql -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/marts/dim_cartao.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/marts/dim_cartao.yml -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/marts/dim_cliente.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/marts/dim_cliente.sql -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/marts/dim_cliente.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/marts/dim_cliente.yml -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/marts/dim_data_venda.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/marts/dim_data_venda.sql -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/marts/dim_data_venda.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/marts/dim_data_venda.yml -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/marts/dim_localidade.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/marts/dim_localidade.sql -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/marts/dim_localidade.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/marts/dim_localidade.yml -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/marts/dim_motivo_venda.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/marts/dim_motivo_venda.sql -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/marts/dim_motivo_venda.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/marts/dim_motivo_venda.yml -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/marts/dim_produto.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/marts/dim_produto.sql -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/marts/dim_produto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/marts/dim_produto.yml -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/marts/fct_linhas_pedidos.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/marts/fct_linhas_pedidos.sql -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/marts/fct_linhas_pedidos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/marts/fct_linhas_pedidos.yml -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/staging/sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/staging/sources.yml -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/staging/stg_cabecalho_pedido.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/staging/stg_cabecalho_pedido.sql -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/staging/stg_cabecalho_pedido.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/staging/stg_cabecalho_pedido.yml -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/staging/stg_cartao.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/staging/stg_cartao.sql -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/staging/stg_cartao.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/staging/stg_cartao.yml -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/staging/stg_cliente.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/staging/stg_cliente.sql -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/staging/stg_cliente.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/staging/stg_cliente.yml -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/staging/stg_detalhamento_pedido.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/staging/stg_detalhamento_pedido.sql -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/staging/stg_detalhamento_pedido.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/staging/stg_detalhamento_pedido.yml -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/staging/stg_endereco.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/staging/stg_endereco.sql -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/staging/stg_endereco.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/staging/stg_endereco.yml -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/staging/stg_estado.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/staging/stg_estado.sql -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/staging/stg_estado.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/staging/stg_estado.yml -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/staging/stg_motivo_venda.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/staging/stg_motivo_venda.sql -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/staging/stg_motivo_venda.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/staging/stg_motivo_venda.yml -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/staging/stg_pais.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/staging/stg_pais.sql -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/staging/stg_pais.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/staging/stg_pais.yml -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/staging/stg_pedidos_motivo_venda.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/staging/stg_pedidos_motivo_venda.sql -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/staging/stg_pedidos_motivo_venda.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/staging/stg_pedidos_motivo_venda.yml -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/staging/stg_pessoa.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/staging/stg_pessoa.sql -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/staging/stg_pessoa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/staging/stg_pessoa.yml -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/staging/stg_produto.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/staging/stg_produto.sql -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/models/staging/stg_produto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/models/staging/stg_produto.yml -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/packages.yml -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/profiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/profiles.yml -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/snapshots/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/tests/generic/test_not_greater_than.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/tests/generic/test_not_greater_than.sql -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/tests/generic/test_not_negative.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/tests/generic/test_not_negative.sql -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/tests/generic/test_positive.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/tests/generic/test_positive.sql -------------------------------------------------------------------------------- /dbt_code_location/dbt_project/tests/total_vendido_2011.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/dbt_project/tests/total_vendido_2011.sql -------------------------------------------------------------------------------- /dbt_code_location/definitions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/definitions/__init__.py -------------------------------------------------------------------------------- /dbt_code_location/definitions/assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/definitions/assets.py -------------------------------------------------------------------------------- /dbt_code_location/definitions/automation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/definitions/automation.py -------------------------------------------------------------------------------- /dbt_code_location/definitions/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/definitions/resource.py -------------------------------------------------------------------------------- /dbt_code_location/definitions/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/definitions/translator.py -------------------------------------------------------------------------------- /dbt_code_location/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/requirements.txt -------------------------------------------------------------------------------- /dbt_code_location/rsa_key.p8.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/dbt_code_location/rsa_key.p8.example -------------------------------------------------------------------------------- /el_code_location/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/el_code_location/Dockerfile -------------------------------------------------------------------------------- /el_code_location/definitions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/el_code_location/definitions/__init__.py -------------------------------------------------------------------------------- /el_code_location/definitions/assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/el_code_location/definitions/assets.py -------------------------------------------------------------------------------- /el_code_location/definitions/automation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/el_code_location/definitions/automation.py -------------------------------------------------------------------------------- /el_code_location/definitions/partitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/el_code_location/definitions/partitions.py -------------------------------------------------------------------------------- /el_code_location/definitions/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/el_code_location/definitions/resources.py -------------------------------------------------------------------------------- /el_code_location/definitions/translators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/el_code_location/definitions/translators.py -------------------------------------------------------------------------------- /el_code_location/dlt_config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /el_code_location/dlt_config/destination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/el_code_location/dlt_config/destination.py -------------------------------------------------------------------------------- /el_code_location/dlt_config/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/el_code_location/dlt_config/source.py -------------------------------------------------------------------------------- /el_code_location/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/el_code_location/requirements.txt -------------------------------------------------------------------------------- /el_code_location/rsa_key.p8.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/el_code_location/rsa_key.p8.example -------------------------------------------------------------------------------- /el_code_location/sling_config/replication.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/el_code_location/sling_config/replication.yaml -------------------------------------------------------------------------------- /infra/base/bucket.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/base/bucket.tf -------------------------------------------------------------------------------- /infra/base/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/base/main.tf -------------------------------------------------------------------------------- /infra/base/postgres.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/base/postgres.tf -------------------------------------------------------------------------------- /infra/base/postgres_sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/base/postgres_sg.tf -------------------------------------------------------------------------------- /infra/base/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/base/variables.tf -------------------------------------------------------------------------------- /infra/base/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/base/vpc.tf -------------------------------------------------------------------------------- /infra/config.s3.tfbackend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/config.s3.tfbackend -------------------------------------------------------------------------------- /infra/core/alb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/core/alb.tf -------------------------------------------------------------------------------- /infra/core/dns.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/core/dns.tf -------------------------------------------------------------------------------- /infra/core/ecr_credentials.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/core/ecr_credentials.tf -------------------------------------------------------------------------------- /infra/core/ecs_cluster.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/core/ecs_cluster.tf -------------------------------------------------------------------------------- /infra/core/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/core/main.tf -------------------------------------------------------------------------------- /infra/core/postgres_credentials.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/core/postgres_credentials.tf -------------------------------------------------------------------------------- /infra/core/tls_certificate.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/core/tls_certificate.tf -------------------------------------------------------------------------------- /infra/core/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/core/variables.tf -------------------------------------------------------------------------------- /infra/dagster/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/dagster/docker/Dockerfile -------------------------------------------------------------------------------- /infra/dagster/docker/dagster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/dagster/docker/dagster.yaml -------------------------------------------------------------------------------- /infra/dagster/docker/requirements-dagster.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/dagster/docker/requirements-dagster.txt -------------------------------------------------------------------------------- /infra/dagster/docker/requirements-webserver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/dagster/docker/requirements-webserver.txt -------------------------------------------------------------------------------- /infra/dagster/docker/workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/dagster/docker/workspace.yaml -------------------------------------------------------------------------------- /infra/dagster/ecr.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/dagster/ecr.tf -------------------------------------------------------------------------------- /infra/dagster/images.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/dagster/images.tf -------------------------------------------------------------------------------- /infra/dagster/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/dagster/main.tf -------------------------------------------------------------------------------- /infra/dagster/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/dagster/outputs.tf -------------------------------------------------------------------------------- /infra/dagster/services.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/dagster/services.tf -------------------------------------------------------------------------------- /infra/dagster/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/dagster/variables.tf -------------------------------------------------------------------------------- /infra/locations/dbt_secrets.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/locations/dbt_secrets.tf -------------------------------------------------------------------------------- /infra/locations/ecr.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/locations/ecr.tf -------------------------------------------------------------------------------- /infra/locations/el_secrets.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/locations/el_secrets.tf -------------------------------------------------------------------------------- /infra/locations/images.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/locations/images.tf -------------------------------------------------------------------------------- /infra/locations/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/locations/main.tf -------------------------------------------------------------------------------- /infra/locations/services.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/locations/services.tf -------------------------------------------------------------------------------- /infra/locations/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/locations/variables.tf -------------------------------------------------------------------------------- /infra/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/infra/terraform.tfvars.example -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/scripts/deploy.sh -------------------------------------------------------------------------------- /scripts/migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/scripts/migrate.sh -------------------------------------------------------------------------------- /scripts/reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/scripts/reset.sh -------------------------------------------------------------------------------- /scripts/retract.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/scripts/retract.sh -------------------------------------------------------------------------------- /source_data/sap_adventure_works/human_resources/department.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/human_resources/department.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/human_resources/employee.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/human_resources/employee.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/human_resources/employeedepartmenthistory.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/human_resources/employeedepartmenthistory.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/human_resources/employeepayhistory.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/human_resources/employeepayhistory.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/human_resources/jobcandidate.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/human_resources/jobcandidate.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/human_resources/shift.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/human_resources/shift.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/person/address.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/person/address.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/person/addresstype.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/person/addresstype.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/person/businessentity.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/person/businessentity.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/person/businessentityaddress.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/person/businessentityaddress.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/person/businessentitycontact.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/person/businessentitycontact.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/person/contacttype.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/person/contacttype.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/person/countryregion.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/person/countryregion.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/person/emailaddress.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/person/emailaddress.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/person/person.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/person/person.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/person/personphone.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/person/personphone.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/person/phonenumbertype.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/person/phonenumbertype.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/person/stateprovince.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/person/stateprovince.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/production/billofmaterials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/production/billofmaterials.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/production/culture.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/production/culture.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/production/illustration.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/production/illustration.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/production/location.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/production/location.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/production/product.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/production/product.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/production/productcategory.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/production/productcategory.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/production/productcosthistory.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/production/productcosthistory.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/production/productdescription.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/production/productdescription.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/production/productdocument.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/production/productdocument.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/production/productinventory.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/production/productinventory.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/production/productlistpricehistory.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/production/productlistpricehistory.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/production/productmodel.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/production/productmodel.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/production/productmodelillustration.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/production/productmodelillustration.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/production/productmodelproductdescriptionculture.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/production/productmodelproductdescriptionculture.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/production/productproductphoto.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/production/productproductphoto.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/production/productsubcategory.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/production/productsubcategory.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/production/scrapreason.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/production/scrapreason.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/production/transactionhistory.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/production/transactionhistory.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/production/transactionhistoryarchive.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/production/transactionhistoryarchive.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/production/unitmeasure.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/production/unitmeasure.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/production/workorder.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/production/workorder.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/production/workorderrouting.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/production/workorderrouting.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/purchasing/productvendor.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/purchasing/productvendor.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/purchasing/purchaseorderdetail.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/purchasing/purchaseorderdetail.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/purchasing/purchaseorderheader.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/purchasing/purchaseorderheader.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/purchasing/shipmethod.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/purchasing/shipmethod.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/purchasing/vendor.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/purchasing/vendor.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/sales/countryregioncurrency.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/sales/countryregioncurrency.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/sales/creditcard.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/sales/creditcard.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/sales/currency.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/sales/currency.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/sales/currencyrate.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/sales/currencyrate.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/sales/customer.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/sales/customer.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/sales/personcreditcard.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/sales/personcreditcard.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/sales/salesorderdetail.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/sales/salesorderdetail.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/sales/salesorderheader.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/sales/salesorderheader.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/sales/salesorderheadersalesreason.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/sales/salesorderheadersalesreason.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/sales/salesperson.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/sales/salesperson.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/sales/salespersonquotahistory.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/sales/salespersonquotahistory.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/sales/salesreason.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/sales/salesreason.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/sales/salestaxrate.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/sales/salestaxrate.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/sales/salesterritory.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/sales/salesterritory.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/sales/salesterritoryhistory.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/sales/salesterritoryhistory.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/sales/shoppingcartitem.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/sales/shoppingcartitem.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/sales/specialoffer.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/sales/specialoffer.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/sales/specialofferproduct.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/sales/specialofferproduct.csv -------------------------------------------------------------------------------- /source_data/sap_adventure_works/sales/store.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techindicium/dagster-power-user/HEAD/source_data/sap_adventure_works/sales/store.csv --------------------------------------------------------------------------------