codespaces-rails/.devcontainer/devcontainer.json
2022-10-25 19:08:05 +00:00

21 lines
465 B
JSON

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