summaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json12
1 files changed, 12 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 4e95206..93a8c43 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -27,6 +27,18 @@
"1"
],
"console": "integratedTerminal"
+ },
+ {
+ "name": "celery",
+ "type": "debugpy",
+ "request": "launch",
+ "module": "celery",
+ "args": [
+ "-A", "app.tasks",
+ "worker",
+ "--loglevel=info"
+ ],
+ "console": "integratedTerminal"
}
]
}