| 123456789101112131415161718192021 |
- {
- "$schema": "vscode://schemas/launch",
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Run 3x-ui (Debug)",
- "type": "go",
- "request": "launch",
- "mode": "auto",
- "program": "${workspaceFolder}",
- "cwd": "${workspaceFolder}",
- "env": {
- "XUI_DEBUG": "true",
- "XUI_DB_FOLDER": "x-ui",
- "XUI_LOG_FOLDER": "x-ui",
- "XUI_BIN_FOLDER": "x-ui"
- },
- "console": "integratedTerminal"
- },
- ]
- }
|