-
Notifications
You must be signed in to change notification settings - Fork 415
Expand file tree
/
Copy pathdevcontainer.json
More file actions
33 lines (33 loc) · 1018 Bytes
/
devcontainer.json
File metadata and controls
33 lines (33 loc) · 1018 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "azd-template",
"build": {
"dockerfile": "Dockerfile"
},
"forwardPorts": [50505],
"features": {
"ghcr.io/azure/azure-dev/azd:latest": {},
"ghcr.io/devcontainers/features/azure-cli:1": {
"installBicep": true,
"version": "latest",
"bicepVersion": "latest"
}
},
"customizations": {
"vscode": {
"extensions": [
"ms-azuretools.azure-dev",
"ms-azuretools.vscode-azcli",
"ms-azuretools.vscode-bicep",
"ms-python.python",
"ms-toolsai.jupyter",
"GitHub.vscode-github-actions"
]
}
},
"postCreateCommand": "sudo chmod +x ./scripts/quota_check_params.sh",
"postStartCommand": "git pull origin main && python3 -m pip install -r ./src/frontend/requirements.txt && python3 -m pip install -r ./src/backend/requirements.txt",
"remoteUser": "vscode",
"hostRequirements": {
"memory": "4gb"
}
}