Update devcontainer configuration to use pnpm and adjust volume mounting

This commit is contained in:
Hussar
2026-04-12 21:35:09 +00:00
parent f239088cd0
commit 64501e7efa
4 changed files with 15205 additions and 5 deletions

View File

@@ -6,7 +6,6 @@
],
"service": "workspace",
"workspaceFolder": "/workspace",
"workspaceMount": "source=${localWorkspaceFolder},target=/workspace,type=bind,consistency=cached",
"runServices": ["workspace", "postgres", "redis"],
"shutdownAction": "stopCompose",
"remoteUser": "node",
@@ -29,6 +28,6 @@
}
},
"forwardPorts": [3333, 4200, 5432, 6379],
"postCreateCommand": "npm install",
"postStartCommand": "echo 'Devcontainer ready. Run: npm run start:api and npm run start:panel'"
"postCreateCommand": "pnpm install",
"postStartCommand": "echo 'Devcontainer ready. Run: pnpm run start:api and pnpm run start:panel'"
}