├── .env ├── Airflow_Introduction.pdf ├── README.md ├── dags ├── testJamesDAG-Decorator.py └── testJamesDAG.py ├── docker-compose.yaml └── requirements.txt /.env: -------------------------------------------------------------------------------- 1 | AIRFLOW_UID=50000 2 | -------------------------------------------------------------------------------- /Airflow_Introduction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNYH/Airflow_Introduction/HEAD/Airflow_Introduction.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNYH/Airflow_Introduction/HEAD/README.md -------------------------------------------------------------------------------- /dags/testJamesDAG-Decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNYH/Airflow_Introduction/HEAD/dags/testJamesDAG-Decorator.py -------------------------------------------------------------------------------- /dags/testJamesDAG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNYH/Airflow_Introduction/HEAD/dags/testJamesDAG.py -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JNYH/Airflow_Introduction/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | openpyxl 2 | --------------------------------------------------------------------------------