system-prompts-and-models-o.../.devcontainer/devcontainer.json
behicof 5a3b176741
2025-05-16 00:28:06 +03:30

21 lines
473 B
JSON

{
"image": "mcr.microsoft.com/devcontainers/universal:2",
"customizations": {
"vscode": {
"extensions": [
"ms-vscode.azure-account",
"ms-python.python",
"ms-toolsai.jupyter",
"ms-vscode.cpptools",
"ms-azuretools.vscode-docker"
]
}
},
"settings": {
"terminal.integrated.shell.linux": "/bin/bash",
"python.pythonPath": "/usr/local/bin/python3",
"editor.formatOnSave": true
},
"postCreateCommand": "pip install -r requirements.txt"
}