launch.json 473 B

123456789101112131415161718192021
  1. {
  2. "$schema": "vscode://schemas/launch",
  3. "version": "0.2.0",
  4. "configurations": [
  5. {
  6. "name": "Run 3x-ui (Debug)",
  7. "type": "go",
  8. "request": "launch",
  9. "mode": "auto",
  10. "program": "${workspaceFolder}",
  11. "cwd": "${workspaceFolder}",
  12. "env": {
  13. "XUI_DEBUG": "true",
  14. "XUI_DB_FOLDER": "x-ui",
  15. "XUI_LOG_FOLDER": "x-ui",
  16. "XUI_BIN_FOLDER": "x-ui"
  17. },
  18. "console": "integratedTerminal"
  19. },
  20. ]
  21. }