/
Alex_Mod
/
DDS
Обзор
Документация
Войти
/
Alex_Mod
/
DDS
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
.devcontainer/devcontainer.json
31 строка
840 B
Alex
first commit
02 ноя 2025, 15:41
02 ноя 2025, 15:41
9cf10cc
Код
Авторство
О чём код?
{ "name": "DDS", "dockerComposeFile": ["../docker-compose.yml"], // ← МАССИВ! "service": "backend", "workspaceFolder": "/app", "features": { "ghcr.io/devcontainers/features/node:1": { "version": "20" }, "ghcr.io/devcontainers/features/python:1": { "version": "3.12" } }, "postCreateCommand": "cd /app/frontend && npm install && cd /app/backend && pip install -r requirements.txt || true", "customizations": { "vscode": { "extensions": [ "ms-python.python", "ms-python.vscode-pylance", "esbenp.prettier-vscode", "bradlc.vscode-tailwindcss", "dbaeumer.vscode-eslint" ], "settings": { "python.defaultInterpreterPath": "/usr/local/bin/python", "editor.formatOnSave": true } } }, "forwardPorts": [8000, 5173, 5432] }