This commit is contained in:
behicof
2025-05-16 00:28:06 +03:30
parent 995158a2f2
commit 5a3b176741
4 changed files with 105 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{
"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"
}