Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.

Commit b0c14be

Browse files
authored
Merge pull request #236 from coder/tim-airflow
corrected path in README.md to point to modules/apache-airflow
2 parents 33dbae6 + 18efe83 commit b0c14be

File tree

3 files changed

+271
-6
lines changed

3 files changed

+271
-6
lines changed

apache-airflow/README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ A module that adds Apache Airflow in your Coder template.
1313

1414
```tf
1515
module "airflow" {
16-
source = "registry.coder.com/modules/airflow/coder"
17-
version = "1.0.2"
16+
source = "registry.coder.com/modules/apache-airflow/coder"
17+
version = "1.0.2"
18+
agent_id = coder_agent.example.id
1819
}
1920
```
2021

@@ -28,7 +29,7 @@ Install the Dracula theme from [OpenVSX](https://open-vsx.org/):
2829

2930
```tf
3031
module "airflow" {
31-
source = "registry.coder.com/modules/airflow/coder"
32+
source = "registry.coder.com/modules/apache-airflow/coder"
3233
version = "1.0.2"
3334
agent_id = coder_agent.example.id
3435
extensions = [
@@ -45,7 +46,7 @@ Configure VS Code's [settings.json](https://code.visualstudio.com/docs/getstarte
4546

4647
```tf
4748
module "airflow" {
48-
source = "registry.coder.com/modules/airflow/coder"
49+
source = "registry.coder.com/modules/apache-airflow/coder"
4950
version = "1.0.2"
5051
agent_id = coder_agent.example.id
5152
extensions = ["dracula-theme.theme-dracula"]
@@ -61,7 +62,7 @@ Run code-server in the background, don't fetch it from GitHub:
6162

6263
```tf
6364
module "airflow" {
64-
source = "registry.coder.com/modules/airflow/coder"
65+
source = "registry.coder.com/modules/apache-airflow/coder"
6566
version = "1.0.2"
6667
agent_id = coder_agent.example.id
6768
offline = true

package-lock.json

Lines changed: 263 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"bun-types": "^1.0.18",
1212
"gray-matter": "^4.0.3",
1313
"marked": "^12.0.0",
14+
"prettier": "^3.2.5",
1415
"prettier-plugin-sh": "^0.13.1",
1516
"prettier-plugin-terraform-formatter": "^1.2.1"
1617
},
@@ -23,4 +24,4 @@
2324
"prettier-plugin-terraform-formatter"
2425
]
2526
}
26-
}
27+
}

0 commit comments

Comments
 (0)