Skip to content

docs: update examples of IDEs: remove JetBrains Projector and add VS Code Server #8310

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 2 commits into from
Jul 4, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
fmt
  • Loading branch information
bpmct committed Jul 4, 2023
commit 929daa2109cd926e8843c75aac1de4b54cd11616
6 changes: 3 additions & 3 deletions docs/ides/web-ides.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ resource "coder_agent" "main" {
# alternatively install in a container image Dockerfile
wget -O- https://aka.ms/install-vscode-server/setup.sh | sh

# start vs code server
# 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
Expand All @@ -125,7 +125,7 @@ resource "coder_agent" "main" {
# microsoft vs code server
resource "coder_app" "msft-code-server" {
agent_id = coder_agent.main.id
slug = "msft-code-server"
slug = "msft-code-server"
display_name = "VS Code Server"
icon = "/icon/code.svg"
url = "http://localhost:8000?folder=/home/coder"
Expand All @@ -136,7 +136,7 @@ resource "coder_app" "msft-code-server" {
url = "http://localhost:8000/healthz"
interval = 5
threshold = 15
}
}
}
```

Expand Down