Files
speckle_automate_python_exa…/.vscode/launch.json
Gergő Jedlicska 2eec40a4be
build and deploy Speckle functions / publish-automate-function-version (push) Has been cancelled
feat: update to new automate (#22)
2024-05-17 14:59:27 +02:00

19 lines
537 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Speckle Automate function",
"type": "debugpy",
"request": "launch",
"program": "main.py",
"console": "integratedTerminal",
"justMyCode": true,
"envFile": "${workspaceFolder}/.env",
"args": ["run", "function_inputs.json"]
}
]
}