codespaces-rails/.devcontainer/devcontainer.json
2022-10-26 12:49:56 -06:00

23 lines
520 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": ""
}