You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Kedro-Airflow plugin adds a `kedro airflow create` CLI command that generates an Airflow DAG file in the `airflow_dags` folder of your project. At runtime, this file translates your Kedro pipeline into Airflow Python operators. This DAG object can be modified according to your needs and then you can then deploy your project to Airflow by running `kedro airflow deploy`.
23
+
The Kedro-Airflow plugin adds a `kedro airflow create` CLI command that generates an Airflow DAG file in the `airflow_dags` folder of your project. At runtime, this file translates your Kedro pipeline into Airflow Python operators. This DAG object can be modified according to your needs and then you can then deploy your project to Airflow by running `kedro airflow deploy`.
24
24
25
25
### Prerequisites
26
26
@@ -33,7 +33,7 @@ The following conditions must be true for Airflow to run your pipeline:
33
33
### Process
34
34
35
35
1. Run `kedro airflow create` to generate a DAG file for your project.
36
-
2. If needed, customize the DAG file as described [below](README.md#customization).
36
+
2. If needed, customize the DAG file as described [below](https://github.com/quantumblacklabs/kedro-airflow/blob/master/README.md#customization).
37
37
3. Run `kedro airflow deploy` which will copy the DAG file from the `airflow_dags` folder in your Kedro project into the `dags` folder in the Airflow home directory.
38
38
39
39
> *Note:* The generated DAG file will be placed in `$AIRFLOW_HOME/dags/` when `kedro airflow deploy` is run, where `AIRFLOW_HOME` is an environment variable. If the environment variable is not defined Kedro-Airflow will create `~/airflow` and `~/airflow/dags` (if required) and copy the DAG file into it.
@@ -86,4 +86,4 @@ The list of default context variables is available in the Airflow [documentation
86
86
87
87
## What licence do you use?
88
88
89
-
Kedro-Airflow is licensed under the [Apache 2.0](LICENSE.md) License.
89
+
Kedro-Airflow is licensed under the [Apache 2.0](https://github.com/quantumblacklabs/kedro-airflow/blob/master/LICENSE.md) License.
0 commit comments