codespaces-rails/.devcontainer/devcontainer.json
2022-11-02 15:36:31 -04:00

24 lines
557 B
JSON

{
"postAttachCommand": {
"server": "rails server",
},
"portsAttributes": {
"3000": {
"label": "Application",
"onAutoForward": "openPreview"
}
},
"customizations": {
"codespaces": {
"openFiles": ["config/routes.rb", "README.md"]
},
"vscode": {
"extensions": [
"rebornix.Ruby"
],
}
},
"onCreateCommand": "bundle install --local",
"postCreateCommand": "",
"hostRequirements": {"cpus": 4}
}