Files
speckle_automate_python_exa…/.vscode/launch.json
T
Gergő Jedlicska 9b78af538b devcontainer setup
2023-08-30 07:41:08 +00:00

23 lines
797 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": "python",
"request": "launch",
"program": "main.py",
"console": "integratedTerminal",
"justMyCode": true,
"envFile": "${workspaceFolder}/.env",
"args": [
"{\"projectId\": \"843d07eb10\", \"modelId\": \"base design\", \"versionId\": \"2a32ccfee1\", \"speckleServerUrl\": \"https://latest.speckle.systems\"}",
// make sure to use camelCase for variable names
"{\"speckleTypeToCount\": \"Objects.Geometry.Brep\"}"
],
},
]
}