forked from alertbox/try-bun
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
81 lines (81 loc) · 2.55 KB
/
devcontainer.json
File metadata and controls
81 lines (81 loc) · 2.55 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "dev",
"build": {
"dockerfile": "Dockerfile"
},
"workspaceMount": "src=${localWorkspaceFolder},dst=/ws,type=bind,consistency=cached",
"workspaceFolder": "/ws",
"forwardPorts": [3000, 5000],
"features": {
"common": {
"username": "automatic",
"uid": "automatic",
"gid": "automatic",
"installZsh": true,
"upgradePackages": true
},
"docker-from-docker": {
"version": "latest",
"moby": false,
"dockerDashComposeVersion": "v2"
},
"github-cli": "latest"
},
"customizations": {
"vscode": {
"settings": {
"workbench.colorTheme": "GitHub Light",
"terminal.integrated.defaultProfile.linux": "zsh",
"editor.formatOnPaste": true,
"editor.guides.bracketPairs": "active",
"scm.defaultViewMode": "tree",
"debug.internalConsoleOptions": "neverOpen",
"eslint.validate": ["javascript", "typescript"],
"eslint.workingDirectories": [
{
"directory": "./",
"changeProcessCWD": true
}
],
"liveServer.settings.NoBrowser": true,
"liveServer.settings.port": 5000
},
"extensions": [
"humao.rest-client",
"github.vscode-pull-request-github",
"visualstudioexptteam.vscodeintellicode",
"visualstudiotxptteam.vscodeintellicode-completions",
"ms-azuretools.vscode-docker",
"dbaeumer.vscode-eslint",
"christian-kohler.npm-intellisense",
"ritwickdey.liveserver",
"glenn2223.live-sass",
"ms-vscode.wordcount",
"editorconfig.editorconfig",
"streetsidesoftware.code-spell-checker",
"redhat.fabric8-analytics",
"redhat.vscode-yaml",
"formulahendry.code-runner",
"tombonnike.vscode-status-bar-format-toggle",
"github.vscode-github-actions",
"GitHub.copilot",
"GitHub.copilot-chat",
"eamodio.gitlens",
"wix.vscode-import-cost",
"DavidAnson.vscode-markdownlint",
"esbenp.prettier-vscode",
"foxundermoon.shell-format",
"luisfontes19.vscode-swissknife",
"DotJoshJohnson.xml",
"ms-python.python",
"rogalmic.bash-debug",
"GitHub.github-vscode-theme",
"VisualStudioExptTeam.intellicode-api-usage-examples",
"Prisma.prisma"
]
}
},
"postCreateCommand": "zsh .devcontainer/post-create.zsh",
"remoteUser": "vscode",
"initializeCommand": "echo 'Hello World!'"
}