launch.json 781 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": "app.py",
  14. "FLASK_ENV": "development",
  15. "FLASK_DEBUG": "0"
  16. },
  17. "args": [
  18. "run",
  19. "--host","0.0.0.0",
  20. "--port","9000",
  21. "--no-debugger",
  22. "--no-reload"
  23. ],
  24. "jinja": true
  25. }
  26. ]
  27. }