An error occurred while loading the file. Please try again.
-
Vanja Matija authoreda274032c
{
// 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": "Google Credentials",
"type": "python",
"request": "launch",
"program": "quickstart.py",
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Run Plugin",
"type": "python",
"request": "launch",
"program": "plugin.py",
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Run Plugin Driver",
"type": "python",
"request": "launch",
"program": "plugin_driver.py",
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Celery",
"type": "python",
"request": "launch",
"module": "celery",
"console": "integratedTerminal",
"args": [
"-A",
"celery_app.app",
"worker",
"--loglevel=INFO",
]
},
{
"name": "Beat",
"type": "python",
"request": "launch",
"module": "celery",
"console": "integratedTerminal",
"args": [
"-A",
"celery_app.app",
"beat",
]
}
]
}