forked from JSONbored/metagraphed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
31 lines (31 loc) · 983 Bytes
/
Copy pathdevcontainer.json
File metadata and controls
31 lines (31 loc) · 983 Bytes
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
{
"name": "metagraphed",
"image": "mcr.microsoft.com/devcontainers/javascript-node:22-bookworm",
// Runs unattended on every container create -- `npm install` first resolves
// Playwright to the exact, lockfile-pinned version already vetted in
// apps/ui/package.json's devDependencies (#3769), then the local `npx
// playwright` (no version pin, no remote fetch) installs its browser
// binaries to match.
"postCreateCommand": "npm install && npx playwright install --with-deps chromium",
"forwardPorts": [8080],
"portsAttributes": {
"8080": {
"label": "apps/ui dev server",
"onAutoForward": "notify"
}
},
"remoteUser": "node",
"customizations": {
"vscode": {
"extensions": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"editorconfig.editorconfig"
],
"settings": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
}
}
}
}