mirror of https://github.com/kcal-app/kcal.git
26 lines
568 B
JSON
26 lines
568 B
JSON
// https://aka.ms/devcontainer.json
|
|
{
|
|
"name": "kcal",
|
|
"dockerComposeFile": [
|
|
"../docker-compose.yml"
|
|
],
|
|
"service": "app",
|
|
"workspaceFolder": "/var/www/html",
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"mikestead.dotenv",
|
|
"amiralizadeh9480.laravel-extra-intellisense",
|
|
"ryannaddy.laravel-artisan",
|
|
"onecentlin.laravel5-snippets",
|
|
"onecentlin.laravel-blade"
|
|
],
|
|
"settings": {}
|
|
}
|
|
},
|
|
"remoteUser": "sail",
|
|
"postCreateCommand": "bash .devcontainer/postCreateCommand.sh"
|
|
// "runServices": [],
|
|
// "shutdownAction": "none",
|
|
}
|