summaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json23
1 files changed, 23 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 000000000..8ec6ff9b8
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,23 @@
+{
+ // See https://go.microsoft.com/fwlink/?linkid=830387
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": "SearXNG",
+ "type": "python",
+ "request": "launch",
+ "module": "searx.webapp",
+ "env": {
+ "FLASK_APP": "webapp",
+ "FLASK_DEBUG": "1",
+ "SEARXNG_DEBUG": "1",
+ },
+ "args": [
+ "run"
+ ],
+ "jinja": true,
+ "justMyCode": true,
+ "python": "${workspaceFolder}/local/py3/bin/python",
+ }
+ ]
+} \ No newline at end of file