awesome-mechanical-keyboard/.devcontainer/devcontainer.json
2023-11-29 09:58:38 +01:00

23 lines
584 B
JSON

{
"name": "awesome-mechanical-keyboards",
"image": "mcr.microsoft.com/vscode/devcontainers/base:ubuntu-22.04",
"containerUser": "vscode",
"postCreateCommand": "npm install",
"postStartCommand": "nohup bash -c 'npm run start -- --host 0.0.0.0 &'",
"waitFor": "postCreateCommand",
"forwardPorts": [3000],
"features": {
"node": {
"version": "20"
}
},
"customizations": {
"codespaces": {
"openFiles": ["README.md", "CONTRIBUTING.md"]
},
"vscode": {
"extensions": ["astro-build.astro-vscode", "esbenp.prettier-vscode"]
}
}
}