mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 07:49:52 +03:00
28 lines
680 B
JSON
28 lines
680 B
JSON
{
|
|
"name": "EMS-ESP Devcontainer",
|
|
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm",
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/node:1": {},
|
|
"ghcr.io/devcontainers-extra/features/pnpm:2": {},
|
|
"ghcr.io/devcontainers/features/python:1": {},
|
|
"ghcr.io/shyim/devcontainers-features/bun:0": {}
|
|
},
|
|
|
|
"forwardPorts": [
|
|
3000,
|
|
3080
|
|
],
|
|
|
|
// Use 'postCreateCommand' to run commands after the container is created.
|
|
"postCreateCommand": "cd mock-api && pnpm install && cd .. && cd interface && pnpm install",
|
|
|
|
// Configure tool-specific properties.
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"platformio.platformio-ide"
|
|
]
|
|
}
|
|
}
|
|
}
|