enginevibration / .devcontainer /devcontainer.json
GitHub Actions
Deploy from GitHub Actions
a1edd1c
raw
history blame contribute delete
412 Bytes
{
"name": "Predictive Maintenance MVP",
"image": "mcr.microsoft.com/devcontainers/python:3.10-bullseye",
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
"ms-toolsai.jupyter",
"vsciot-vscode.vscode-arduino"
]
}
},
"forwardPorts": [5000, 7860],
"postCreateCommand": "pip install --user -r requirements.txt",
"remoteUser": "vscode"
}