Standardize formatting

This commit is contained in:
Josh Abernathy 2022-11-04 18:42:37 +00:00 committed by GitHub
parent 7ed2119545
commit e39c8558b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,24 +1,29 @@
{ {
"postAttachCommand": { "hostRequirements": {
"server": "rails server", "cpus": 4
},
"waitFor": "onCreateCommand",
"updateContentCommand": "bundle install --local",
"postCreateCommand": "",
"postAttachCommand": {
"server": "rails server"
},
"customizations": {
"codespaces": {
"openFiles": [
"app/views/hello/index.html.erb"
]
}, },
"portsAttributes": { "vscode": {
"3000": { "extensions": [
"label": "Application", "rebornix.Ruby"
"onAutoForward": "openPreview" ]
} }
}, },
"customizations": { "portsAttributes": {
"codespaces": { "3000": {
"openFiles": ["app/views/hello/index.html.erb"] "label": "Application",
}, "onAutoForward": "openPreview"
"vscode": { }
"extensions": [
"rebornix.Ruby"
],
}
},
"onCreateCommand": "bundle install --local",
"postCreateCommand": "",
"hostRequirements": {"cpus": 4}
} }
}