devcontainer.json 328 B

1234567891011121314
  1. {
  2. "name": "Awesome Django Codespace",
  3. "image": "mcr.microsoft.com/vscode/devcontainers/base:0-focal",
  4. "settings": {
  5. "terminal.integrated.shell.linux": "/bin/bash"
  6. },
  7. "extensions": [
  8. "github.github-vscode-theme"
  9. ],
  10. "forwardPorts": [4000],
  11. "postCreateCommand": "bundle install",
  12. "remoteUser": "vscode"
  13. }