-
Notifications
You must be signed in to change notification settings - Fork 0
/
devcontainer.json
54 lines (54 loc) · 2.08 KB
/
devcontainer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// https://aka.ms/devcontainer.json
{
"name": "Existing Docker Compose (Extend)",
"dockerComposeFile": [
"../docker-compose.yml"
],
"service": "laravel.test",
"workspaceFolder": "/var/www/html",
"customizations": {
"vscode": {
"extensions": [
"formulahendry.auto-complete-tag",
"alefragnani.bookmarks",
"predrag-nikolic.php-class-helper",
"ikappas.composer",
"ms-azuretools.vscode-docker",
"dbaeumer.vscode-eslint",
"eamodio.gitlens",
"nhoizey.gremlins",
"heybourn.headwind",
"ecmel.vscode-html-css",
"zignd.html-css-class-completion",
"oderwat.indent-rainbow",
"onecentlin.laravel-extension-pack",
"austenc.laravel-docs",
"absszero.vscode-laravel-goto",
"georgykurian.laravel-ide-helper",
"ahinkle.laravel-model-snippets",
"open-southeners.laravel-pint",
"xabikos.javascriptsnippets",
"jakebathman.mysql-syntax",
"christian-kohler.npm-intellisense",
"xdebug.php-pack",
"neilbrayfield.php-docblocker",
"bmewburn.vscode-intelephense-client",
"mehedidracula.php-namespace-resolver",
"bradlc.vscode-tailwindcss",
"alfredbirk.tailwind-documentation",
"stivo.tailwind-fold",
"pflannery.vscode-versionlens",
"vue.volar",
"hollowtree.vue-snippets",
"redhat.vscode-yaml",
"gamunu.vscode-yarn"
],
"settings": {}
}
},
"remoteUser": "sail",
"postCreateCommand": "chown -R 1000:1000 /var/www/html && cp .env.example .env && composer install && php artisan key:generate && php artisan storage:link && npm install && npm run dev"
// "forwardPorts": [],
// "runServices": [],
// "shutdownAction": "none",
}