1
0
mirror of https://github.com/badges/shields.git synced 2025-04-18 19:44:04 +03:00
shields/.devcontainer/devcontainer.json
Ari Kalfus 9b91a60c75
build: creates a devcontainer configuration for contributors (#10937)
* set up a devcontainer configuration

* also install postgresql for that part of the CONTRIBUTING guidance

* set up a devcontainer configuration

* also install postgresql for that part of the CONTRIBUTING guidance

* forgot to revert node 22 to node 20

* slim down devcontainer file
2025-03-12 17:54:34 +00:00

15 lines
520 B
JSON

{
"name": "Node.js",
// "Officially" maintained node devcontainer image from Microsoft
// https://github.com/devcontainers/templates/tree/main/src/javascript-node
"image": "mcr.microsoft.com/devcontainers/javascript-node:1-20-bookworm",
// Features to add to the dev container. More info: https://containers.dev/features.
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {}
},
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "npm ci"
}