├── README.md ├── dags ├── .gitignore ├── commons │ ├── __init__.py │ ├── datasources.py │ ├── hooks.py │ ├── operators.py │ └── session.py └── dags │ ├── __init__.py │ ├── orders.py │ └── update_reports.py ├── docker-compose.db.yml ├── docker-compose.yml ├── mssql_init.py └── requirements.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlogv/airflow-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /dags/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlogv/airflow-tutorial/HEAD/dags/.gitignore -------------------------------------------------------------------------------- /dags/commons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dags/commons/datasources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlogv/airflow-tutorial/HEAD/dags/commons/datasources.py -------------------------------------------------------------------------------- /dags/commons/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlogv/airflow-tutorial/HEAD/dags/commons/hooks.py -------------------------------------------------------------------------------- /dags/commons/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlogv/airflow-tutorial/HEAD/dags/commons/operators.py -------------------------------------------------------------------------------- /dags/commons/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlogv/airflow-tutorial/HEAD/dags/commons/session.py -------------------------------------------------------------------------------- /dags/dags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dags/dags/orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlogv/airflow-tutorial/HEAD/dags/dags/orders.py -------------------------------------------------------------------------------- /dags/dags/update_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlogv/airflow-tutorial/HEAD/dags/dags/update_reports.py -------------------------------------------------------------------------------- /docker-compose.db.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlogv/airflow-tutorial/HEAD/docker-compose.db.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlogv/airflow-tutorial/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /mssql_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlogv/airflow-tutorial/HEAD/mssql_init.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlogv/airflow-tutorial/HEAD/requirements.txt --------------------------------------------------------------------------------