gitpod/gitpod-ws.code-workspace
rl-gitpod f96392a1e4
[server] add OAuth2 server endpoints (behind a feature flag) (#4222)
to manage client application access to users Gitpod workspaces
2021-05-21 21:23:08 +10:00

68 lines
2.0 KiB
Plaintext

{
"folders": [
{ "path": "." },
{ "path": "components/gitpod-protocol" },
{ "path": "components/blobserve" },
{ "path": "components/common-go" },
{ "path": "components/content-service" },
{ "path": "components/docker-up" },
{ "path": "components/ee/ws-scheduler" },
{ "path": "components/gitpod-cli" },
{ "path": "components/image-builder" },
{ "path": "components/licensor" },
{ "path": "components/local-app" },
{ "path": "components/registry-facade" },
{ "path": "components/service-waiter" },
{ "path": "components/supervisor" },
{ "path": "components/workspacekit" },
{ "path": "components/ws-daemon" },
{ "path": "components/ws-manager" },
{ "path": "components/ws-proxy" },
{ "path": "install/installer" },
{ "path": "test" },
{ "path": "dev/blowtorch" },
{ "path": "dev/gpctl" },
{ "path": "dev/loadgen" },
{ "path": "dev/poolkeeper" },
{ "path": "dev/sweeper" }
],
"settings": {
"typescript.tsdk": "gitpod/node_modules/typescript/lib",
"[json]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"[yaml]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"[go]": {
"editor.formatOnSave": true
},
"[tf]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"go.formatTool": "goimports",
"go.useLanguageServer": true,
"workspace.supportMultiRootWorkspace": true,
"database.connections": [
{
"type": "mysql",
"name": "devstaging DB",
"host": "127.0.0.1:23306",
"username": "gitpod",
"database": "gitpod",
"password": "test"
}
],
"launch": {},
"files.exclude": {
"**/.git": true
},
"go.lintTool": "golangci-lint",
"gopls": {
"allowModfileModifications": true
}
}
}