mirror of
https://github.com/badges/shields.git
synced 2025-04-18 19:44:04 +03:00
* 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
15 lines
520 B
JSON
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"
|
|
}
|