File tree Expand file tree Collapse file tree 2 files changed +43
-0
lines changed Expand file tree Collapse file tree 2 files changed +43
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "name" : " Multi Agent Custom Automation Engine Solution Accelerator" ,
3+ "image" : " mcr.microsoft.com/devcontainers/python:3.10" ,
4+ "features" : {
5+ "ghcr.io/devcontainers/features/azure-cli:1.0.8" : {},
6+ "ghcr.io/azure/azure-dev/azd:latest" : {},
7+ "ghcr.io/rchaganti/vsc-devcontainer-features/azurebicep:1.0.5" : {}
8+ },
9+
10+
11+ "postCreateCommand" : " sudo chmod +x .devcontainer/setupEnv.sh && ./.devcontainer/setupEnv.sh" ,
12+
13+ "customizations" : {
14+ "vscode" : {
15+ "extensions" : [
16+ " ms-azuretools.azure-dev" ,
17+ " ms-azuretools.vscode-bicep" ,
18+ " ms-python.python"
19+ ]
20+ },
21+ "codespaces" : {
22+ "openFiles" : [
23+ " README.md"
24+ ]
25+ }
26+ },
27+ "forwardPorts" : [
28+ 8000 ,
29+ 3000
30+ ],
31+ "remoteUser" : " vscode" ,
32+ "hostRequirements" : {
33+ "memory" : " 8gb"
34+ }
35+ }
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ pip install --upgrade pip
4+
5+
6+ (cd ./src/frontend; pip install -r requirements.txt)
7+
8+ (cd ./src/backend; pip install -r requirements.txt)
You can’t perform that action at this time.
0 commit comments