1
0
mirror of https://github.com/searxng/searxng.git synced 2024-06-28 21:54:35 +02:00
searxng/.vscode/launch.json
2023-03-21 20:58:13 +00:00

23 lines
599 B
JSON

{
// 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",
}
]
}