This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -46,3 +46,4 @@ public/login-linux-amd64
|
||||
.cache/gomod/**
|
||||
public/login-login-linux-amd64
|
||||
public/logic_linux-amd64_1
|
||||
.cache/**
|
||||
@@ -62,6 +62,7 @@ RUN set -eux; \
|
||||
waderyan.gitblame \
|
||||
donjayamanne.githistory \
|
||||
mhutchie.git-graph \
|
||||
tencent-cloud.coding-copilot\
|
||||
; do \
|
||||
if ! /usr/bin/code-server --install-extension "${ext}" --user-data-dir "${USER_DATA_DIR}" --extensions-dir "${EXTENSIONS_DIR}"; then \
|
||||
FAILED_EXTENSIONS="${FAILED_EXTENSIONS} ${ext}"; \
|
||||
|
||||
14
.vscode/settings.json
vendored
14
.vscode/settings.json
vendored
@@ -19,7 +19,19 @@
|
||||
"trimPath": true,
|
||||
"currentPreset": "production"
|
||||
},
|
||||
"go.toolsEnvVars": {},
|
||||
"go.toolsEnvVars": {
|
||||
"GOROOT": "/usr/local/go",
|
||||
"GOPATH": "/root/go",
|
||||
"PATH": "/usr/local/go/bin:/root/go/bin:${env:PATH}",
|
||||
"GOCACHE": "/workspace/.cache/go-build",
|
||||
"GOMODCACHE": "/workspace/.cache/gomod",
|
||||
"XDG_CACHE_HOME": "/workspace/.cache"
|
||||
},
|
||||
"go.alternateTools": {
|
||||
"go": "/usr/local/go/bin/go",
|
||||
"gopls": "/root/go/bin/gopls"
|
||||
},
|
||||
"go.useLanguageServer": true,
|
||||
"goBuild.zcli.enabled": false,
|
||||
"cSpell.words": ["struc"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user