Skip to content

Commit 924bccb

Browse files
authored
docs: rm microsoft vs code server docs (#8845)
1 parent 66649f9 commit 924bccb

File tree

1 file changed

+0
-41
lines changed

1 file changed

+0
-41
lines changed

docs/ides/web-ides.md

Lines changed: 0 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -99,47 +99,6 @@ resource "coder_app" "code-server" {
9999
}
100100
```
101101

102-
## Microsoft VS Code Server
103-
104-
Microsoft has a VS Code in a browser IDE as well called [VS Code Server](https://code.visualstudio.com/docs/remote/vscode-server) which can be added to a Coder template.
105-
106-
```hcl
107-
resource "coder_agent" "main" {
108-
arch = "amd64"
109-
os = "linux"
110-
startup_script = <<EOF
111-
#!/bin/sh
112-
113-
# install vs code server
114-
# alternatively install in a container image Dockerfile
115-
wget -O- https://aka.ms/install-vscode-server/setup.sh | sh
116-
117-
# start vs code server
118-
code-server --accept-server-license-terms serve-local --without-connection-token --quality stable --telemetry-level off >/dev/null 2>&1 &
119-
120-
EOF
121-
}
122-
```
123-
124-
```hcl
125-
# microsoft vs code server
126-
resource "coder_app" "msft-code-server" {
127-
agent_id = coder_agent.main.id
128-
slug = "msft-code-server"
129-
display_name = "VS Code Server"
130-
icon = "/icon/code.svg"
131-
url = "http://localhost:8000?folder=/home/coder"
132-
subdomain = true
133-
share = "owner"
134-
135-
healthcheck {
136-
url = "http://localhost:8000/healthz"
137-
interval = 5
138-
threshold = 15
139-
}
140-
}
141-
```
142-
143102
## JupyterLab
144103

145104
Configure your agent and `coder_app` like so to use Jupyter. Notice the

0 commit comments

Comments
 (0)