mirror of
https://github.com/farcasclaudiu/learn-build-apps-copilot-agent.git
synced 2026-06-22 11:01:42 +03:00
48 lines
1.4 KiB
JSON
48 lines
1.4 KiB
JSON
{
|
|
"name": "OctoFit Tracker Multi-tier Application Codespace",
|
|
"image": "mcr.microsoft.com/devcontainers/base:jammy",
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
|
|
"ghcr.io/devcontainers/features/github-cli:1": {},
|
|
"ghcr.io/devcontainers/features/node:1": {
|
|
"version": "lts",
|
|
"pnpmVersion": "latest",
|
|
"nvmVersion": "latest"
|
|
}
|
|
},
|
|
"postCreateCommand": "sudo chmod +x ./.devcontainer/post_create.sh && ./.devcontainer/post_create.sh",
|
|
"postStartCommand": "sudo chmod +x ./.devcontainer/post_start.sh && ./.devcontainer/post_start.sh",
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"github.copilot",
|
|
"markdown-lint.markdownlinter",
|
|
"ms-vscode.vscode-typescript-next",
|
|
"dbaeumer.vscode-eslint"
|
|
],
|
|
"settings": {
|
|
"chat.agent.enabled": true
|
|
}
|
|
}
|
|
},
|
|
"forwardPorts": [
|
|
5173,
|
|
8000,
|
|
27017
|
|
],
|
|
"portsAttributes": {
|
|
"5173": {
|
|
"label": "octofit-tracker-frontend",
|
|
"requireLocalPort": true
|
|
},
|
|
"8000": {
|
|
"label": "octofit-tracker-api",
|
|
"requireLocalPort": true
|
|
},
|
|
"27017": {
|
|
"label": "octofit-tracker-mongodb",
|
|
"requireLocalPort": true
|
|
}
|
|
}
|
|
}
|