codespaces-rails/.devcontainer/devcontainer.json
2022-08-10 10:36:40 -06:00

20 lines
428 B
JSON

{
"extensions": [
"rebornix.Ruby"
],
"onCreateCommand": "bundle install --local",
"postCreateCommand": "",
"hostRequirements": {
"cpus": 4,
"memory": "8gb",
"storage": "32gb"
},
"codespaces": {
"zero": {
"defaultFile": "config/routes.rb",
"startCommand": "bin/rails s",
"previewPort": 3000,
"previewDelay": 6000
}
}
}