gitextract_ete3vhl4/ ├── .gitignore ├── LICENSE ├── README.md └── src/ ├── Makefile ├── benchmark.py ├── dashboard/ │ ├── dashboard.py │ └── dbt/ │ ├── analysis/ │ │ └── .gitkeep │ ├── dbt_project.yml │ ├── macros/ │ │ └── .gitkeep │ ├── models/ │ │ └── taxi/ │ │ ├── top_pickup_locations.sql │ │ └── trips_by_pickup_location.sql │ ├── snapshots/ │ │ └── .gitkeep │ └── tests/ │ └── .gitkeep ├── data/ │ └── .gitkeep ├── local.env ├── package.json ├── quack.py ├── requirements.txt ├── run_me_first.py ├── serverless/ │ ├── Dockerfile │ └── app.py └── serverless.yml