launch.json 230 B

1234567891011
  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. }