-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevcontainer.json
More file actions
50 lines (50 loc) · 1.29 KB
/
devcontainer.json
File metadata and controls
50 lines (50 loc) · 1.29 KB
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
{
"name": "Drupal Boilerplate",
"workspaceFolder": "/opt/drupal",
"dockerComposeFile": ["docker-compose.yml"],
"service": "drupal",
"forwardPorts": [
80,
"adminer:8080"
],
"postCreateCommand": "bash .devcontainer/post-create.bash",
"postStartCommand": "bash .devcontainer/post-start--install.bash",
"customizations": {
"vscode": {
"extensions": [
"xdebug.php-debug",
"bmewburn.vscode-intelephense-client",
"neilbrayfield.php-docblocker"
],
"settings": {
"php.xdebugSettings": {
"max_data": 65535,
"show_hidden": 1,
"max_children": 100,
"max_depth": 5
},
"editor.renderWhitespace": "boundary",
"editor.rulers": [
120
],
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.trimAutoWhitespace": true,
"files.trimTrailingWhitespace": true,
"editor.wordWrap": "off",
"editor.wordWrapColumn": 120,
"files.associations": {
"*.inc": "php",
"*.module": "php",
"*.install": "php",
"*.theme": "php",
"*.profile": "php",
"*.tpl.php": "php",
"*.test": "php",
"*.php": "php",
"*.info": "ini"
}
}
}
}
}