launch.json 635 B

1234567891011121314151617181920212223
  1. {
  2. "version": "0.0.1",
  3. "configurations": [
  4. {
  5. "name": "webroot-static",
  6. "runtimeExecutable": "python",
  7. "runtimeArgs": ["-m", "http.server", "8123", "--directory", "src/web"],
  8. "port": 8123
  9. },
  10. {
  11. "name": "framework-static",
  12. "runtimeExecutable": "python",
  13. "runtimeArgs": ["-m", "http.server", "8124", "--directory", "src/framework"],
  14. "port": 8124
  15. },
  16. {
  17. "name": "desktop-app",
  18. "runtimeExecutable": "go",
  19. "runtimeArgs": ["run", "./apps/desktop", "-noui", "-port", "8765", "-store", "./apps/desktop/.preview-servers.json"],
  20. "port": 8765
  21. }
  22. ]
  23. }