├── .astro ├── config.yaml └── test_dag_integrity_default.py ├── .devcontainer ├── devcontainer.json └── post_creation_script.sh ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── airflow_settings.yaml ├── dags └── .airflowignore ├── packages.txt ├── requirements.txt └── tests └── dags └── test_dag_integrity.py /.astro/config.yaml: -------------------------------------------------------------------------------- 1 | project: 2 | name: 2-6-example-dags 3 | -------------------------------------------------------------------------------- /.astro/test_dag_integrity_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/education-sandbox/HEAD/.astro/test_dag_integrity_default.py -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/education-sandbox/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/post_creation_script.sh: -------------------------------------------------------------------------------- 1 | astro dev start -n --wait 5m -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | astro 2 | .git 3 | .env 4 | airflow_settings.yaml 5 | logs/ 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .git 2 | .env 3 | .DS_Store # macOS specific ignore 4 | __pycache__/ 5 | astro -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/education-sandbox/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/education-sandbox/HEAD/README.md -------------------------------------------------------------------------------- /airflow_settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/education-sandbox/HEAD/airflow_settings.yaml -------------------------------------------------------------------------------- /dags/.airflowignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages.txt: -------------------------------------------------------------------------------- 1 | build-essential -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/education-sandbox/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/dags/test_dag_integrity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/education-sandbox/HEAD/tests/dags/test_dag_integrity.py --------------------------------------------------------------------------------