codespaces-rails/.devcontainer/devcontainer.json
Josh Abernathy a7fccd50f3
Stop opening the README by default
This was in place before we had better default content.
2022-11-03 11:57:46 -04:00

24 lines
558 B
JSON

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