diff options
| author | Alexandre Flament <alex@al-f.net> | 2023-03-15 20:04:03 +0100 |
|---|---|---|
| committer | Alexandre Flament <alex@al-f.net> | 2023-03-21 20:58:13 +0000 |
| commit | 7b711cb15d11ca9f090ca06c909eab57adf5c316 (patch) | |
| tree | 0f44b925b942d442c35a29d261df1960027aa737 /.vscode/launch.json | |
| parent | 9dc36965bbb118db64c0bf2d3f54389d4d484670 (diff) | |
Add GitHub Codespaces configuration
Diffstat (limited to '.vscode/launch.json')
| -rw-r--r-- | .vscode/launch.json | 23 |
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 |