awesome-django/.devcontainer/devcontainer.json

14 lines
328 B
JSON
Raw Normal View History

2024-01-23 00:56:50 +00:00
{
"name": "Awesome Django Codespace",
"image": "mcr.microsoft.com/vscode/devcontainers/base:0-focal",
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
},
"extensions": [
"github.github-vscode-theme"
],
"forwardPorts": [4000],
"postCreateCommand": "bundle install",
"remoteUser": "vscode"
}