├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *__pycache__ 2 | .env 3 | airflow_settings.yaml 4 | plugins 5 | dags -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Apache Airflow® 3 Demos 2 | 3 | This repository contains demos made by the DevRel team for Airflow 3. The demos are located on different branches: 4 | 5 | - [`introducing-apache-airflow-3-0`](https://github.com/astronomer/airflow-3-demos/tree/introducing-apache-airflow-3-0): This branch contains the demo for the [Introducing Apache Airflow® 3.0 webinar](https://www.astronomer.io/events/webinars/introducing-apache-airflow-3-0-video/). 6 | - [`personalized-newsletter`](https://github.com/astronomer/airflow-3-demos/tree/personalized-newsletter): This branch contains the demo for the personalized newsletter pipeline. 7 | - [`airflow-3-roadshow`](https://github.com/astronomer/airflow-3-demos/tree/airflow-3-roadshow): This branch contains the demo for the [Airflow 3 Roadshows](https://www.astronomer.io/events/roadshow). 8 | - [`apache-airflow-3-optimize-your-pipeline-developer-experience`](https://github.com/astronomer/airflow-3-demos/tree/apache-airflow-3-optimize-your-pipeline-developer-experience): This branch contains the demo for the [Optimizing your Airflow Developer Experience: Exploring DAG Versioning and Backfills](https://www.astronomer.io/events/webinars/apache-airflow-3-optimize-your-pipeline-developer-experience-video/) webinar. 9 | --------------------------------------------------------------------------------