├── .env ├── .gitignore ├── README.md ├── dags ├── BashOperator.py ├── PostgresExample.py ├── PythonOperator.py ├── TaskFlowAPI.py ├── Xcoms.py ├── catch_up.py └── taskdependency.py ├── docker-compose.yaml └── python_package ├── Dockerfile └── requirements.txt /.env: -------------------------------------------------------------------------------- 1 | AIRFLOW_UID=50000 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | logs/ 2 | __pycache__ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Airflow-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /dags/BashOperator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Airflow-tutorial/HEAD/dags/BashOperator.py -------------------------------------------------------------------------------- /dags/PostgresExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Airflow-tutorial/HEAD/dags/PostgresExample.py -------------------------------------------------------------------------------- /dags/PythonOperator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Airflow-tutorial/HEAD/dags/PythonOperator.py -------------------------------------------------------------------------------- /dags/TaskFlowAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Airflow-tutorial/HEAD/dags/TaskFlowAPI.py -------------------------------------------------------------------------------- /dags/Xcoms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Airflow-tutorial/HEAD/dags/Xcoms.py -------------------------------------------------------------------------------- /dags/catch_up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Airflow-tutorial/HEAD/dags/catch_up.py -------------------------------------------------------------------------------- /dags/taskdependency.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Airflow-tutorial/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /python_package/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Airflow-tutorial/HEAD/python_package/Dockerfile -------------------------------------------------------------------------------- /python_package/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Airflow-tutorial/HEAD/python_package/requirements.txt --------------------------------------------------------------------------------