This repository has been archived by the owner on Jun 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
devcontainer.json
78 lines (78 loc) · 2.18 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// TALL Stack Version: v1.0.0
// https://aka.ms/devcontainer.json
{
"name": "TALL Stack", // Application Name
"dockerComposeFile": [
"../docker-compose.yml"
],
"service": "laravel.test",
"workspaceFolder": "/var/www/html",
"settings": {},
"extensions": [
// Essentials
"ms-vscode-remote.remote-ssh",
"ms-vscode-remote.remote-containers",
"ms-vscode-remote.remote-wsl",
"xdebug.php-debug",
"calebporzio.better-phpunit",
"m1guelpf.better-pest",
"eamodio.gitlens",
"bmewburn.vscode-intelephense-client",
"onecentlin.laravel-blade",
"mikestead.dotenv",
"csstools.postcss",
"formulahendry.auto-rename-tag",
"shufo.vscode-blade-formatter",
"austenc.laravel-blade-spacer",
"austenc.laravel-docs",
"amiralizadeh9480.laravel-extra-intellisense",
"pcbowers.alpine-intellisense",
"naoray.laravel-goto-components",
"ctf0.laravel-goto-controller",
"ctf0.laravel-goto-view",
"ctf0.laravel-goto-env",
"ctf0.laravel-goto-config",
"ctf0.laravel-goto-lang",
"ctf0.laravel-goto-path",
"austenc.livewire-docs",
"cierra.livewire-vscode",
"lennardv.livewire-goto-updated",
"christian-kohler.path-intellisense",
"MehediDracula.php-constructor",
"phproberto.vscode-php-getters-setters",
"bradlc.vscode-tailwindcss",
"austenc.tailwind-docs",
"bourhaouta.tailwindshades",
// Supportive
"esbenp.prettier-vscode",
"moshfeu.compare-folders",
"wix.vscode-import-cost",
"dbankier.vscode-quick-select",
"albert.TabOut",
"vmsynkov.colonize",
"vcoppola.append-comma",
"sleistner.vscode-fileutils",
"patbenatar.advanced-new-file",
"wmaurer.change-case",
"deanhjjiang.split-line",
"wwm.better-align",
"cshum.convert-newline-list-to-array",
"albymor.increment-selection",
"sainoba.px-to-rem",
// Recommended
"Gruntfuggly.todo-tree",
"aaron-bond.better-comments",
"kamikillerto.vscode-colorize",
"pnp.polacode",
"bierner.markdown-preview-github-styles",
"bierner.markdown-checkbox",
"bierner.markdown-emoji",
"Equinusocio.vsc-community-material-theme",
"PKief.material-icon-theme"
],
"remoteUser": "sail",
"postCreateCommand": "chown -R 1000:1000 /var/www/html"
// "forwardPorts": [],
// "runServices": [],
// "shutdownAction": "none",
}