1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
{
"name": "Neko (Podman)",
"build": {
"dockerfile": "Dockerfile",
"context": ".."
},
"features": {
"ghcr.io/devcontainers/features/node:1": {
"node": "20"
}
},
"customizations": {
"vscode": {
"settings": {
"go.toolsManagement.checkForUpdates": "local",
"go.useLanguageServer": true,
"go.gopath": "/go",
"editor.formatOnSave": true,
"eslint.workingDirectories": [
"./frontend"
]
},
"extensions": [
"golang.Go",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"vitest.explorer",
"ms-azuretools.vscode-docker"
]
}
},
"forwardPorts": [
8080,
5173
],
"portsAttributes": {
"5173": {
"label": "Frontend (Vite)",
"onAutoForward": "notify"
},
"8080": {
"label": "Backend (Neko)",
"onAutoForward": "notify"
}
},
"postCreateCommand": "go mod download && (cd frontend && npm install)",
"remoteUser": "vscode",
"runArgs": [
"--security-opt",
"label=disable"
],
"containerEnv": {
"NEKO_PORT": "8080"
}
}
|