launch.json 272 B

123456789101112
  1. {
  2. "version": "0.0.1",
  3. "configurations": [
  4. {
  5. "name": "OKR Backend",
  6. "runtimeExecutable": "java",
  7. "runtimeArgs": ["-jar", "backend/target/okr-performance-1.0.0.jar", "--server.port=${PORT}"],
  8. "port": 18080,
  9. "autoPort": true
  10. }
  11. ]
  12. }