2020-05-29 12:37:35 +02:00
|
|
|
// For format details, see https://aka.ms/vscode-remote/devcontainer.json or this file's README at:
|
|
|
|
// https://github.com/microsoft/vscode-dev-containers/tree/v0.117.1/containers/docker-existing-dockerfile
|
|
|
|
{
|
2021-05-06 14:00:48 +00:00
|
|
|
"name": "Castopod Host dev",
|
|
|
|
"dockerComposeFile": ["../docker-compose.yml"],
|
|
|
|
"service": "app",
|
|
|
|
"workspaceFolder": "/castopod-host",
|
|
|
|
"postCreateCommand": "cron && php spark serve --host 0.0.0.0",
|
2020-06-05 13:54:40 +00:00
|
|
|
"settings": {
|
2021-05-12 14:00:25 +00:00
|
|
|
"terminal.integrated.defaultProfile.linux": "/bin/bash",
|
2020-06-12 19:31:10 +00:00
|
|
|
"editor.formatOnSave": true,
|
|
|
|
"[php]": {
|
2021-05-19 16:35:13 +00:00
|
|
|
"editor.defaultFormatter": "bmewburn.vscode-intelephense-client",
|
|
|
|
"editor.formatOnSave": false
|
2020-06-12 19:31:10 +00:00
|
|
|
},
|
2021-05-12 14:00:25 +00:00
|
|
|
"color-highlight.markerType": "dot-before",
|
|
|
|
"files.associations": {
|
|
|
|
"*.xml.dist": "xml",
|
|
|
|
"spark": "php"
|
|
|
|
}
|
2020-06-05 13:54:40 +00:00
|
|
|
},
|
|
|
|
"extensions": [
|
2021-05-06 14:00:48 +00:00
|
|
|
"mikestead.dotenv",
|
|
|
|
"bmewburn.vscode-intelephense-client",
|
|
|
|
"streetsidesoftware.code-spell-checker",
|
|
|
|
"naumovs.color-highlight",
|
|
|
|
"heybourn.headwind",
|
|
|
|
"wayou.vscode-todo-highlight",
|
|
|
|
"esbenp.prettier-vscode",
|
|
|
|
"bradlc.vscode-tailwindcss",
|
|
|
|
"jamesbirtles.svelte-vscode",
|
|
|
|
"dbaeumer.vscode-eslint",
|
|
|
|
"stylelint.vscode-stylelint",
|
2021-05-12 14:00:25 +00:00
|
|
|
"eamodio.gitlens",
|
|
|
|
"breezelin.phpstan",
|
|
|
|
"kasik96.latte"
|
2021-05-06 14:00:48 +00:00
|
|
|
]
|
2020-06-05 13:54:40 +00:00
|
|
|
}
|