gitextract_2hoppbha/ ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── config/ │ ├── airflow.cfg │ └── entrypoint.sh ├── dags/ │ ├── my_first_dag.py │ └── my_second_dag.py ├── docker-compose.yml ├── infrastructure/ │ ├── airflow_flower.tf │ ├── airflow_scheduler.tf │ ├── airflow_web_server.tf │ ├── airflow_web_server_lb.tf │ ├── airflow_workers.tf │ ├── config.tf │ ├── ecs.tf │ ├── ecs_services.tf │ ├── network.tf │ ├── output.tf │ ├── postgres.tf │ ├── provider.tf │ └── redis.tf ├── plugins/ │ └── my_first_operator.py ├── requirements.txt └── scripts/ ├── deploy.sh └── push_to_ecr.sh