mirror of https://github.com/renovatebot/renovate
33 lines
732 B
JSON
33 lines
732 B
JSON
{
|
|
"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"
|
|
}
|