浏览代码

:gear: Adds devcontainer config

Jeff Triplett 1 年之前
父节点
当前提交
3446103a77
共有 1 个文件被更改,包括 13 次插入0 次删除
  1. 13 0
      .devcontainer/devcontainer.json

+ 13 - 0
.devcontainer/devcontainer.json

@@ -0,0 +1,13 @@
+{
+  "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"
+}