File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ {
2+ "name" : " azd-template" ,
3+ "image" : " mcr.microsoft.com/devcontainers/python:3.11-bullseye" ,
4+ "forwardPorts" : [3000 , 5000 ],
5+ "features" : {
6+ "ghcr.io/devcontainers/features/node:1" : {
7+ "nodeGypDependencies" : true ,
8+ "installYarnUsingApt" : true ,
9+ "version" : " lts" ,
10+ "pnpmVersion" : " latest" ,
11+ "nvmVersion" : " latest"
12+ },
13+ "ghcr.io/devcontainers/features/azure-cli:1" : {
14+ "installBicep" : true ,
15+ "version" : " latest" ,
16+ "bicepVersion" : " latest"
17+ },
18+ "ghcr.io/azure/azure-dev/azd:0" : {
19+ "version" : " stable"
20+ }
21+ },
22+ "customizations" : {
23+ "vscode" : {
24+ "extensions" : [
25+ " ms-azuretools.azure-dev" ,
26+ " ms-azuretools.vscode-bicep" ,
27+ " ms-python.python" ,
28+ " ms-toolsai.jupyter" ,
29+ " GitHub.vscode-github-actions"
30+ ]
31+ }
32+ },
33+ "postCreateCommand" : " bash ./.devcontainer/setup_env.sh" ,
34+ "remoteUser" : " vscode" ,
35+ "hostRequirements" : {
36+ "memory" : " 4gb"
37+ }
38+ }
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ git fetch
4+ git pull
5+
6+ # provide execute permission to deploy scripts
7+ sudo chmod +x ./scripts/deploy.sh
8+ sudo chmod +x ./scripts/local_dev.sh
You can’t perform that action at this time.
0 commit comments