launch.json 840 B

123456789101112131415161718192021222324252627282930
  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: Current File",
  9. "type": "python",
  10. "request": "launch",
  11. "program": "${file}",
  12. "console": "integratedTerminal"
  13. },
  14. {
  15. "name": "Python: FastAPI",
  16. "type": "python",
  17. "request": "launch",
  18. "module": "uvicorn",
  19. "args": [
  20. "main:app",
  21. "--host",
  22. "0.0.0.0",
  23. "--port",
  24. "9998",
  25. "--reload"
  26. ],
  27. "jinja": true
  28. }
  29. ]
  30. }