File tree Expand file tree Collapse file tree 1 file changed +15
-15
lines changed
docs/admin/templates/extending-templates Expand file tree Collapse file tree 1 file changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -315,6 +315,21 @@ module "airflow" {
315
315
316
316
![ Airflow in Coder] ( ../../../images/airflow-port-forward.png )
317
317
318
+ ## Zed
319
+
320
+ Configure your agent and ` coder_app ` like to include a Zed hotlink:
321
+
322
+ ``` hcl
323
+ resource "coder_app" "zed" {
324
+ agent_id = coder_agent.main.id
325
+ slug = "slug"
326
+ display_name = "Zed"
327
+ external = true
328
+ url = "zed://ssh/coder.${data.coder_workspace.me.name}"
329
+ icon = "/icon/zed.svg"
330
+ }
331
+ ```
332
+
318
333
## File Browser
319
334
320
335
To access the contents of a workspace directory in a browser, you can use File
@@ -368,21 +383,6 @@ module "filebrowser" {
368
383
369
384
![ File Browser] ( ../../../images/file-browser.png )
370
385
371
- ## Zed
372
-
373
- Configure your agent and ` coder_app ` like to include a Zed hotlink:
374
-
375
- ``` hcl
376
- resource "coder_app" "zed" {
377
- agent_id = coder_agent.main.id
378
- slug = "slug"
379
- display_name = "Zed"
380
- external = true
381
- url = "zed://ssh/coder.${data.coder_workspace.me.name}"
382
- icon = "/icon/zed.svg"
383
- }
384
- ```
385
-
386
386
## SSH Fallback
387
387
388
388
If you prefer to run web IDEs in localhost, you can port forward using
You can’t perform that action at this time.
0 commit comments