You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
673 B

  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Launch",
  6. "type": "go",
  7. "request": "launch",
  8. "mode": "debug",
  9. "buildFlags": "",
  10. "port": 2345,
  11. "host": "127.0.0.1",
  12. "program": "${workspaceRoot}/main.go",
  13. "env": {},
  14. "args": ["web"],
  15. "showLog": true
  16. },
  17. {
  18. "name": "Launch (with SQLite3)",
  19. "type": "go",
  20. "request": "launch",
  21. "mode": "debug",
  22. "buildFlags": "-tags=\"sqlite sqlite_unlock_notify\"",
  23. "port": 2345,
  24. "host": "127.0.0.1",
  25. "program": "${workspaceRoot}/main.go",
  26. "env": {},
  27. "args": ["web"],
  28. "showLog": true
  29. }
  30. ]
  31. }