gin-vue-admin.code-workspace 970 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "folders": [
  3. {
  4. "path": "server",
  5. "name": "backend"
  6. },
  7. {
  8. "path": "web",
  9. "name": "frontend"
  10. },
  11. {
  12. "path": ".",
  13. "name": "root"
  14. }
  15. ],
  16. "settings": {
  17. "go.toolsEnvVars": {
  18. "GOPROXY": "https://goproxy.cn,direct",
  19. "GONOPROXY": "none;"
  20. }
  21. },
  22. "launch": {
  23. "version": "0.2.0",
  24. "configurations": [
  25. {
  26. "type": "go",
  27. "request": "launch",
  28. "name": "Backend",
  29. "cwd": "${workspaceFolder:backend}",
  30. "program": "${workspaceFolder:backend}/"
  31. },
  32. {
  33. "type": "node",
  34. "request": "launch",
  35. "cwd": "${workspaceFolder:frontend}",
  36. "name": "Frontend",
  37. "runtimeExecutable": "npm",
  38. "runtimeArgs": ["run-script", "serve"]
  39. }
  40. ],
  41. "compounds": [
  42. {
  43. "name": "Both (Backend & Frontend)",
  44. "configurations": ["Backend", "Frontend"],
  45. "stopAll": true
  46. }
  47. ]
  48. }
  49. }