Thanks to visit codestin.com
Credit goes to github.com

Skip to content

docs: rm microsoft vs code server docs #8845

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 1, 2023
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
docs: rm microsoft vs code server docs
  • Loading branch information
ericpaulsen committed Aug 1, 2023
commit 5993c47c704609e6d4e12643e159f7fee3abf29f
41 changes: 0 additions & 41 deletions docs/ides/web-ides.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,47 +99,6 @@ resource "coder_app" "code-server" {
}
```

## Microsoft VS Code Server

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.

```hcl
resource "coder_agent" "main" {
arch = "amd64"
os = "linux"
startup_script = <<EOF
#!/bin/sh

# install vs code server
# alternatively install in a container image Dockerfile
wget -O- https://aka.ms/install-vscode-server/setup.sh | sh

# start vs code server
code-server --accept-server-license-terms serve-local --without-connection-token --quality stable --telemetry-level off >/dev/null 2>&1 &

EOF
}
```

```hcl
# microsoft vs code server
resource "coder_app" "msft-code-server" {
agent_id = coder_agent.main.id
slug = "msft-code-server"
display_name = "VS Code Server"
icon = "/icon/code.svg"
url = "http://localhost:8000?folder=/home/coder"
subdomain = true
share = "owner"

healthcheck {
url = "http://localhost:8000/healthz"
interval = 5
threshold = 15
}
}
```

## JupyterLab

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