launch.json 774 B

123456789101112131415161718192021222324252627
  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "Python: Flask",
  9. "type": "python",
  10. "request": "launch",
  11. "module": "flask",
  12. "env": {
  13. "FLASK_APP": "api/app.py",
  14. "FLASK_DEBUG": "1",
  15. "GEVENT_SUPPORT": "True"
  16. },
  17. "args": [
  18. "run",
  19. "--host=0.0.0.0",
  20. "--port=5001",
  21. "--debug"
  22. ],
  23. "jinja": true,
  24. "justMyCode": true
  25. }
  26. ]
  27. }