launch.json 818 B

1234567891011121314151617181920212223242526272829
  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": "webroot-static-alt",
  12. "runtimeExecutable": "python",
  13. "runtimeArgs": ["-m", "http.server", "8126", "--directory", "src/web"],
  14. "port": 8126
  15. },
  16. {
  17. "name": "framework-static",
  18. "runtimeExecutable": "python",
  19. "runtimeArgs": ["-m", "http.server", "8124", "--directory", "src/framework"],
  20. "port": 8124
  21. },
  22. {
  23. "name": "desktop-app",
  24. "runtimeExecutable": "go",
  25. "runtimeArgs": ["run", "./apps/desktop", "-noui", "-port", "8765", "-store", "./apps/desktop/.preview-servers.json"],
  26. "port": 8765
  27. }
  28. ]
  29. }