launch.json 599 B

1234567891011121314151617181920212223
  1. {
  2. // See https://go.microsoft.com/fwlink/?linkid=830387
  3. "version": "0.2.0",
  4. "configurations": [
  5. {
  6. "name": "SearXNG",
  7. "type": "python",
  8. "request": "launch",
  9. "module": "searx.webapp",
  10. "env": {
  11. "FLASK_APP": "webapp",
  12. "FLASK_DEBUG": "1",
  13. "SEARXNG_DEBUG": "1",
  14. },
  15. "args": [
  16. "run"
  17. ],
  18. "jinja": true,
  19. "justMyCode": true,
  20. "python": "${workspaceFolder}/local/py3/bin/python",
  21. }
  22. ]
  23. }