2026-04-12 16:43:45 +01:00
|
|
|
{
|
|
|
|
|
"name": "fog-expedition-devcontainer",
|
|
|
|
|
"dockerComposeFile": [
|
|
|
|
|
"../docker-compose.yml",
|
|
|
|
|
"docker-compose.devcontainer.yml"
|
|
|
|
|
],
|
|
|
|
|
"service": "workspace",
|
2026-04-12 18:20:49 +01:00
|
|
|
"workspaceFolder": "/workspace",
|
2026-04-12 16:43:45 +01:00
|
|
|
"runServices": ["workspace", "postgres", "redis"],
|
|
|
|
|
"shutdownAction": "stopCompose",
|
|
|
|
|
"remoteUser": "node",
|
|
|
|
|
"features": {
|
|
|
|
|
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {}
|
|
|
|
|
},
|
|
|
|
|
"customizations": {
|
|
|
|
|
"vscode": {
|
|
|
|
|
"extensions": [
|
|
|
|
|
"nrwl.angular-console",
|
|
|
|
|
"angular.ng-template",
|
|
|
|
|
"esbenp.prettier-vscode",
|
|
|
|
|
"dbaeumer.vscode-eslint",
|
|
|
|
|
"Prisma.prisma"
|
|
|
|
|
],
|
|
|
|
|
"settings": {
|
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
|
"files.eol": "\n"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"forwardPorts": [3333, 4200, 5432, 6379],
|
2026-04-12 21:35:09 +00:00
|
|
|
"postCreateCommand": "pnpm install",
|
|
|
|
|
"postStartCommand": "echo 'Devcontainer ready. Run: pnpm run start:api and pnpm run start:panel'"
|
2026-04-12 16:43:45 +01:00
|
|
|
}
|