Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/ide/code/codehelper/supervisor-ide-config.json
2500 views
1
{
2
"entrypoint": "/ide/codehelper",
3
"entrypointArgs": [ "--port", "{IDEPORT}", "--host", "0.0.0.0", "--without-connection-token", "--server-data-dir", "/workspace/.vscode-remote" ],
4
"readinessProbe": {
5
"type": "http",
6
"http": {
7
"path": "version"
8
}
9
},
10
"env": {
11
"PATH": "/ide/bin/remote-cli:$PATH",
12
"EDITOR": "/ide/bin/remote-cli/gitpod-code",
13
"VISUAL": "$EDITOR",
14
"GP_OPEN_EDITOR": "$EDITOR",
15
"GIT_EDITOR": "$EDITOR --wait",
16
"GP_PREVIEW_BROWSER": "$EDITOR --preview",
17
"GP_EXTERNAL_BROWSER": "$EDITOR --openExternal"
18
}
19
}
20
21