Skip to content

Instantly share code, notes, and snippets.

@daipham3213
Created August 16, 2022 10:14
Show Gist options
  • Save daipham3213/f46fddbc30b0447b89b3976f6a02a5e5 to your computer and use it in GitHub Desktop.
Save daipham3213/f46fddbc30b0447b89b3976f6a02a5e5 to your computer and use it in GitHub Desktop.
{
// 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": "Python: API",
"type": "python",
"request": "launch",
"program": "/usr/local/bin/senlin-api",
"console": "integratedTerminal",
"args": ["--config-file", "senlin.conf"],
"justMyCode": true,
"gevent": true
},
{
"name": "Python: Conductor",
"type": "python",
"request": "launch",
"program": "/usr/local/bin/senlin-conductor",
"console": "integratedTerminal",
"args": ["--config-file", "senlin.conf"],
"justMyCode": true,
"gevent": true
},
{
"name": "Python: Health Monitor",
"type": "python",
"request": "launch",
"program": "/usr/local/bin/senlin-health-monitor",
"console": "integratedTerminal",
"args": ["--config-file", "senlin.conf"],
"justMyCode": true,
"gevent": true
},
{
"name": "Python: Engine",
"type": "python",
"request": "launch",
"program": "/usr/local/bin/senlin-engine",
"console": "integratedTerminal",
"args": ["--config-file", "senlin.conf"],
"justMyCode": true,
"gevent": true
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment