aboutsummaryrefslogtreecommitdiffhomepage
path: root/.devcontainer/devcontainer.json
blob: 94cd77170ed56a065bbd954a0dc5d3e458e68d2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
  "name": "Renovate",
  "build": {
    "dockerfile": "Dockerfile"
  },
  "init": true,
  "hostRequirements": {
    "cpus": 4,
    "memory": "7gb",
    "storage": "32gb"
  },
  "customizations": {
    "vscode": {
      "terminal.integrated.profiles.linux": {
        "bash": {
          "path": "bash",
          "icon": "terminal-bash"
        }
      },
      "extensions": [
        "dbaeumer.vscode-eslint",
        "esbenp.prettier-vscode",
        "orta.vscode-jest",
        "editorconfig.editorconfig",
        "github.vscode-github-actions"
      ]
    }
  },
  "postCreateCommand": [".devcontainer/post-create.sh"],
  // Otherwise jest watcher fails because deps were not installed yet
  "waitFor": "postCreateCommand"
}