/
githubmirror
/
novu
Обзор
Документация
Войти
/
githubmirror
/
novu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
next
.devcontainer/devcontainer.json
29 строк
1 KB
Paweł Tymczuk
chore(dashboard): migrate to react 19 and tailwind 4 (#9810)
15 янв 2026, 12:54
Не верифицирован
15 янв 2026, 12:54
e85c44c
Код
Авторство
О чём код?
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: // https://github.com/microsoft/vscode-dev-containers/tree/v0.208.0/containers/javascript-node-mongo // Update the VARIANT arg in docker-compose.redis-cluster.yml to pick a Node.js version { "name": "Novu", "dockerComposeFile": "docker-compose.yml", "service": "app", "workspaceFolder": "/workspace", "hostRequirements": { "cpus": 4 }, // Add the IDs of extensions you want installed when the container is created. "customizations": { "vscode": { "extensions": ["biomejs.biome"] } }, // Use 'forwardPorts' to make a list of ports inside the container available locally. "forwardPorts": [4200, 3000, 27017], "onCreateCommand": "npm run setup:project -- --exclude=@novu/api-service,@novu/worker", // Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. "remoteUser": "node", "features": { "github-cli": "latest", "ghcr.io/devcontainers-contrib/features/pnpm:2": {} } }