Skip to content

Commit 1be9f98

Browse files
committed
Remove unnecessary step and fix numbering.
Signed-off-by: merobi-hub <[email protected]>
1 parent 6aea328 commit 1be9f98

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

docs/v2/docs/airflow_tutorial/index.mdx

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -165,16 +165,9 @@ To view the Marquez UI and verify it's running, open [http://localhost:3000](htt
165165
</TabItem>
166166
</Tabs>
167167

168-
5. Now add both packages to `requirements.txt`:
168+
5. Create a database in your local Postgres instance and create an Airflow Postgres connection using the default ID (`postgres_default`). For help with the former, see: [Postgres Documentation](https://www.postgresql.org/docs/). For help with the latter, see: [Managing Connections](https://airflow.apache.org/docs/apache-airflow/stable/howto/connection.html#managing-connections).
169169

170-
```txt
171-
apache-airflow-providers-openlineage
172-
apache-airflow-providers-postgres
173-
```
174-
175-
6. Create a database in your local Postgres instance and create an Airflow Postgres connection using the default ID (`postgres_default`). For help with the former, see: [Postgres Documentation](https://www.postgresql.org/docs/). For help with the latter, see: [Managing Connections](https://airflow.apache.org/docs/apache-airflow/stable/howto/connection.html#managing-connections).
176-
177-
7. Add a flaky DAG to Airflow that will _often_ create a table in the Postgres database:
170+
6. Add a flaky DAG to Airflow that will _often_ create a table in the Postgres database:
178171

179172
```py
180173
from __future__ import annotations
@@ -228,7 +221,7 @@ To view the Marquez UI and verify it's running, open [http://localhost:3000](htt
228221

229222
```
230223

231-
8. Add another DAG that updates (and then drops) the Postgres table:
224+
7. Add another DAG that updates (and then drops) the Postgres table:
232225

233226
```py
234227
from __future__ import annotations

0 commit comments

Comments
 (0)