Files
Jonathon Broughton 564b4a8012
build and deploy Speckle functions / publish-automate-function-version (push) Has been cancelled
fixes
2023-11-13 04:39:51 +00:00

29 lines
1003 B
JSON

// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/python
{
"name": "speckle-automate-pymesh",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"dockerFile": "../Dockerfile",
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "poetry install --no-root",
// Configure tool-specific properties.
"customizations": {
"vscode": {
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"ms-python.python",
"mikestead.dotenv",
"streetsidesoftware.code-spell-checker",
"ms-python.vscode-pylance",
"ms-python.black-formatter",
"charliermarsh.ruff"
]
}
}
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}