-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathdevcontainer.json
More file actions
35 lines (35 loc) · 1.24 KB
/
Copy pathdevcontainer.json
File metadata and controls
35 lines (35 loc) · 1.24 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
{
"name": "Security Frameworks DevContainer",
"build": {
"dockerfile": "Dockerfile"
},
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {
"installDirectlyFromGitHubRelease": true
}
},
"customizations": {
"vscode": {
"extensions": [
"yzhang.markdown-all-in-one",
"bradlc.vscode-tailwindcss",
"ms-vscode.vscode-typescript-next",
"esbenp.prettier-vscode"
],
"settings": {
"terminal.integrated.defaultProfile.linux": "bash",
"terminal.integrated.profiles.linux": {
"bash": {
"path": "/bin/bash"
}
}
}
}
},
"forwardPorts": [
5173
],
"workspaceMount": "source=${localWorkspaceFolder},target=/workspace,type=bind,consistency=cached",
"workspaceFolder": "/workspace",
"postCreateCommand": "pnpm install && pnpm rebuild just-install && echo 'DevContainer ready! Run \"pnpm run docs:dev\" to start the Vocs server.' && ip=$(hostname -I | awk '{print $1}'); echo \"After running 'pnpm run docs:dev', access the site at http://$ip:5173\""
}