Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 6 additions & 10 deletions docs/integrations/airflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,12 @@ The name of the module file can be arbitrary, but we recommend something descrip

## SQLMesh client configuration
In your SQLMesh repository, create the following configuration within config.py:
```python linenums="1"
from sqlmesh.core.config import Config, AirflowSchedulerConfig

airflow_config = Config(
scheduler=AirflowSchedulerConfig(
airflow_url="https://<Airflow Webserver Host>:<Airflow Webserver Port>/",
username="<Airflow Username>",
password="<Airflow Password>",
)
)
```yaml linenums="1"
scheduler:
type: airflow
airflow_url: https://<Airflow Webserver Host>:<Airflow Webserver Port>/
username: <Airflow Username>
password: <Airflow Password>
```

## Engine support
Expand Down