-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevcontainer.json
More file actions
54 lines (54 loc) · 1.66 KB
/
Copy pathdevcontainer.json
File metadata and controls
54 lines (54 loc) · 1.66 KB
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
{
"name": "CannaGuide 2025 (Lite Mode)",
"build": {
"dockerfile": "Dockerfile"
},
"remoteUser": "root",
"hostRequirements": {
"cpus": 4,
"memory": "8gb",
"storage": "32gb"
},
"postCreateCommand": "bash .devcontainer/setup.sh",
"postStartCommand": "bash .devcontainer/start.sh",
"forwardPorts": [5173, 3001],
"portsAttributes": {
"5173": {
"label": "Vite Dev Server",
"onAutoForward": "openBrowser"
},
"3001": {
"label": "ESP32 Sensor Mock",
"onAutoForward": "silent"
}
},
"containerEnv": {
"VITE_ESP32_URL": "http://localhost:3001"
},
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.defaultProfile.linux": "bash",
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"typescript.tsdk": "node_modules/typescript/lib",
"files.eol": "\n",
"json.schemaDownload.enable": false,
"security.workspace.trust.enabled": true,
"git.allowForcePush": false
},
"extensions": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"ms-playwright.playwright",
"bradlc.vscode-tailwindcss",
"github.copilot",
"github.copilot-chat",
"github.vscode-github-actions"
]
}
}
}