-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathdevcontainer.json
More file actions
43 lines (43 loc) · 1.09 KB
/
devcontainer.json
File metadata and controls
43 lines (43 loc) · 1.09 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
{
"name": "html2rss-web",
"dockerComposeFile": "docker-compose.yml",
"service": "app",
"workspaceFolder": "/workspace",
"shutdownAction": "stopCompose",
"customizations": {
"vscode": {
"extensions": [
"rebornix.ruby",
"astro-build.astro-vscode",
"esbenp.prettier-vscode"
],
"settings": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"files.associations": {
"*.astro": "astro"
},
"prettier.configPath": "./frontend/.prettierrc",
"ruby.format": "rubocop",
"ruby.lint": { "rubocop": true },
"editor.tabSize": 2,
"editor.insertSpaces": true,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true
}
}
},
"forwardPorts": [3000, 4321],
"portsAttributes": {
"3000": {
"label": "Ruby App",
"onAutoForward": "notify"
},
"4321": {
"label": "Astro Dev Server",
"onAutoForward": "silent"
}
},
"postCreateCommand": "make setup",
"remoteUser": "vscode"
}