34 lines
915 B
JSON
34 lines
915 B
JSON
|
|
{
|
||
|
|
"name": "fog-expedition-devcontainer",
|
||
|
|
"dockerComposeFile": [
|
||
|
|
"../docker-compose.yml",
|
||
|
|
"docker-compose.devcontainer.yml"
|
||
|
|
],
|
||
|
|
"service": "workspace",
|
||
|
|
"workspaceFolder": "/workspaces/fog",
|
||
|
|
"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],
|
||
|
|
"postCreateCommand": "npm install",
|
||
|
|
"postStartCommand": "echo 'Devcontainer ready. Run: npm run start:api and npm run start:panel'"
|
||
|
|
}
|