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 @@
{ {
"hostRequirements": {
"cpus": 4
},
"waitFor": "onCreateCommand",
"updateContentCommand": "bundle install --local",
"postCreateCommand": "",
"postAttachCommand": { "postAttachCommand": {
"server": "rails server", "server": "rails server"
},
"customizations": {
"codespaces": {
"openFiles": [
"app/views/hello/index.html.erb"
]
},
"vscode": {
"extensions": [
"rebornix.Ruby"
]
}
}, },
"portsAttributes": { "portsAttributes": {
"3000": { "3000": {
"label": "Application", "label": "Application",
"onAutoForward": "openPreview" "onAutoForward": "openPreview"
} }
},
"customizations": {
"codespaces": {
"openFiles": ["app/views/hello/index.html.erb"]
},
"vscode": {
"extensions": [
"rebornix.Ruby"
],
} }
},
"onCreateCommand": "bundle install --local",
"postCreateCommand": "",
"hostRequirements": {"cpus": 4}
} }