mirror of
https://github.com/farcasclaudiu/learn-build-apps-copilot-agent.git
synced 2026-06-28 17:01:41 +03:00
Initial commit
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"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
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user