File tree Expand file tree Collapse file tree 1 file changed +26
-7
lines changed
docs/Infrastructure_Guide Expand file tree Collapse file tree 1 file changed +26
-7
lines changed Original file line number Diff line number Diff line change @@ -52,14 +52,31 @@ Below is a list of all the tools and services used in this project's infrastruct
5252
5353```
5454.
55+ ├── infrastructure/
56+ │ ├── aws/
57+ │ │ ├── .terraform
58+ │ │ ├── ec2/
59+ │ │ ├── rds/
60+ │ │ └── vpc/
61+ │ ├── dagster.server
62+ │ ├── start-dagster.sh
63+ │ └── wait-for-rds.sh
5564├── pipelines/
5665│ ├── defs/
5766│ │ ├── extract/
58- │ │ │ ├── extract_data.py
59- │ │ │ └── extract_pricing_data.py
67+ │ │ │ ├── tcgcsv/
68+ │ │ │ │ └── extract_pricing.py
69+ │ │ │ └── tcgdex/
70+ │ │ │ ├── extract_cards.py
71+ │ │ │ ├── extract_series.py
72+ │ │ │ └── extract_sets.py
6073│ │ ├── load/
61- │ │ │ ├── load_data.py
62- │ │ │ └── load_pricing_data.py
74+ │ │ │ ├── tcgcsv/
75+ │ │ │ │ └── load_pricing.py
76+ │ │ │ └── tcgdex/
77+ │ │ │ ├── load_cards.py
78+ │ │ │ ├── load_series.py
79+ │ │ │ └── load_sets.py
6380│ │ └── transform/
6481│ │ └── transform_data.py
6582│ ├── poke_cli_dbt/
@@ -76,11 +93,13 @@ Below is a list of all the tools and services used in this project's infrastruct
7693│ │ ├── dbt_project.yml
7794│ │ └── profiles.yml
7895│ ├── soda/
79- │ │ ├── checks.yml
8096│ │ ├── checks_pricing.yml
97+ │ │ ├── checks_series.yml
98+ │ │ ├── checks_sets.yml
8199│ │ └── configuration.yml
82- │ ├── tests
83- │ └── utls/
100+ │ ├── tests/
101+ │ │ └── extract_series_test.py
102+ │ └── utils/
84103│ ├── json_retriever.py
85104│ └── secret_retriever.py
86105├── dagster.yaml
You can’t perform that action at this time.
0 commit comments