File size: 1,197 Bytes
ff7e5c8 | 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 34 35 36 37 38 39 40 41 42 43 | {
"name": "NurseSim-Triage Dev Environment",
"build": {
"dockerfile": "Dockerfile",
"context": ".."
},
"customizations": {
"vscode": {
"settings": {
"python.defaultInterpreterPath": "/usr/local/bin/python",
"python.formatting.provider": "black",
"editor.formatOnSave": true
},
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
"KevinRose.vsc-python-indent",
"njpwerner.autodocstring",
"donjayamanne.githistory"
]
}
},
"forwardPorts": [
7860,
8080
],
"portsAttributes": {
"7860": {
"label": "Gradio UI",
"onAutoForward": "notify"
},
"8080": {
"label": "AgentBeats API",
"onAutoForward": "silent"
}
},
"postCreateCommand": "pip install --user -r requirements.txt",
"remoteUser": "vscode",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers/features/github-cli:1": {}
}
} |