mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
* [server] Introduce ReadinessController and probe at /ready Tool: gitpod/catfood.gitpod.cloud * [server] Move /live and /ready endpoints to a separate express app and port Tool: gitpod/catfood.gitpod.cloud * [memory-bank] task-related learnings Tool: gitpod/catfood.gitpod.cloud * [server] Introduce `server_readiness_probe` feature flag so we can disable the ReadinessProbe if required Tool: gitpod/catfood.gitpod.cloud * docs: formalize Product Requirements Document workflow - Add PRD workflow to systemPatterns.md as a standardized development process - Update .clinerules with instructions to follow the PRD workflow - Update activeContext.md and progress.md to reference the new workflow This formalizes the process we used for implementing the server readiness probe feature. Tool: gitpod/catfood.gitpod.cloud * [server] ReadinessProbe: add redis as dependency Tool: gitpod/catfood.gitpod.cloud * review comments Tool: gitpod/catfood.gitpod.cloud * [dev] Remove outdated gopls config Tool: gitpod/catfood.gitpod.cloud * [server] Fix import Tool: gitpod/catfood.gitpod.cloud
169 lines
3.9 KiB
Plaintext
169 lines
3.9 KiB
Plaintext
{
|
|
"folders": [
|
|
{
|
|
"path": "."
|
|
},
|
|
{
|
|
"path": "components/blobserve"
|
|
},
|
|
{
|
|
"path": "components/common-go"
|
|
},
|
|
{
|
|
"path": "components/content-service"
|
|
},
|
|
{
|
|
"path": "components/docker-up"
|
|
},
|
|
{
|
|
"path": "components/ee/agent-smith"
|
|
},
|
|
{
|
|
"path": "components/gitpod-cli"
|
|
},
|
|
{
|
|
"path": "components/dashboard"
|
|
},
|
|
{
|
|
"path": "components/gitpod-protocol"
|
|
},
|
|
{
|
|
"path": "components/ide-metrics"
|
|
},
|
|
{
|
|
"path": "components/ide-service"
|
|
},
|
|
{
|
|
"path": "components/image-builder-bob"
|
|
},
|
|
{
|
|
"path": "components/image-builder-mk3"
|
|
},
|
|
{
|
|
"path": "components/local-app"
|
|
},
|
|
{
|
|
"path": "components/registry-facade"
|
|
},
|
|
{
|
|
"path": "components/service-waiter"
|
|
},
|
|
{
|
|
"path": "components/supervisor"
|
|
},
|
|
{
|
|
"path": "components/usage"
|
|
},
|
|
{
|
|
"path": "components/usage-api"
|
|
},
|
|
{
|
|
"path": "components/workspacekit"
|
|
},
|
|
{
|
|
"path": "components/ws-daemon"
|
|
},
|
|
{
|
|
"path": "components/ws-manager-api"
|
|
},
|
|
{
|
|
"path": "components/ws-manager-bridge"
|
|
},
|
|
{
|
|
"path": "components/ws-manager-mk2"
|
|
},
|
|
{
|
|
"path": "components/ws-proxy"
|
|
},
|
|
{
|
|
"path": "components/public-api"
|
|
},
|
|
{
|
|
"path": "components/public-api-server"
|
|
},
|
|
{
|
|
"path": "components/public-api/typescript"
|
|
},
|
|
{
|
|
"path": "components/gitpod-db"
|
|
},
|
|
{
|
|
"path": "test"
|
|
},
|
|
{
|
|
"path": "dev/blowtorch"
|
|
},
|
|
{
|
|
"path": "dev/changelog"
|
|
},
|
|
{
|
|
"path": "dev/gpctl"
|
|
},
|
|
{
|
|
"path": "dev/gp-gcloud"
|
|
},
|
|
{
|
|
"path": "dev/loadgen"
|
|
},
|
|
{
|
|
"path": "dev/preview/previewctl"
|
|
},
|
|
{
|
|
"path": "install/installer"
|
|
},
|
|
{
|
|
"path": "install/preview"
|
|
},
|
|
{
|
|
"path": "components/node-labeler"
|
|
},
|
|
{
|
|
"path": "components/server"
|
|
},
|
|
{
|
|
"path": "components/spicedb"
|
|
},
|
|
{
|
|
"path": "components/spicedb/codegen"
|
|
}
|
|
],
|
|
"settings": {
|
|
"typescript.tsdk": "gitpod/node_modules/typescript/lib",
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"[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,
|
|
"launch": {},
|
|
"files.exclude": {
|
|
"**/.git": true
|
|
},
|
|
"go.lintTool": "golangci-lint",
|
|
"go.lintFlags": ["-disable", "govet,errcheck,staticcheck", "--allow-parallel-runners", "--timeout", "15m"],
|
|
"gopls": {
|
|
},
|
|
"prettier.configPath": "/workspace/gitpod/.prettierrc.json"
|
|
}
|
|
}
|