You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
[JetBrains Projector](https://jetbrains.github.io/projector-client/mkdocs/latest/) is a JetBrains Incubator project which renders JetBrains IDEs in the web browser. JetBrains has [suspended the project](https://lp.jetbrains.com/projector/) so Coder no longer provides example templates or support.
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"
104
134
105
-
Use [JetBrains Gateway](./gateway.md) to remotely connect to a Coder workspace.
0 commit comments