-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
45 lines (44 loc) · 1.25 KB
/
devcontainer.json
File metadata and controls
45 lines (44 loc) · 1.25 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
{
"name": "Spec-kit / OpenCode Dev Container",
"build": {
"dockerfile": "Dockerfile",
"context": ".."
},
"customizations": {
"vscode": {
"extensions": [
"GitHub.copilot",
"tanishqkancharla.opencode-vscode",
"ms-python.python",
"ms-python.black-formatter",
"ms-python.flake8",
"ms-python.pylint"
],
"settings": {
"python.defaultInterpreterPath": "/usr/local/bin/python",
"python.formatting.provider": "black",
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.pylintEnabled": true,
"terminal.integrated.shell.linux": "/bin/bash"
}
}
},
"forwardPorts": [3001, 8001, 5433],
"postCreateCommand": "echo 'Container ready for development' && opencode --version && echo 'Verifying Spec-Kit installation...' && specify version && echo '✅ All tools ready for Spec-Driven Development'",
"remoteUser": "vscode",
"portsAttributes": {
"3001": {
"label": "Development Server",
"onAutoForward": "notify"
},
"8001": {
"label": "Application Server",
"onAutoForward": "notify"
},
"5433": {
"label": "Database",
"onAutoForward": "silent"
}
}
}