You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
699 B
23 lines
699 B
{
|
|
"image": "mcr.microsoft.com/devcontainers/javascript-node:dev-18-bookworm",
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/github-cli:1": {}
|
|
},
|
|
"updateContentCommand": "npm ci",
|
|
"postCreateCommand": "",
|
|
"postAttachCommand": {
|
|
"frontend-dev": "npm run start-frontend-devcontainer",
|
|
"server-dev": "npm run start-server-dev",
|
|
"open-port": "gh codespace ports visibility 3001:public -c $CODESPACE_NAME"
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"streetsidesoftware.code-spell-checker",
|
|
"dbaeumer.vscode-eslint"
|
|
]
|
|
}
|
|
},
|
|
"forwardPorts": [3000, 3001]
|
|
}
|