| 1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "$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"
- },
- {
- "name": "Run 3x-ui (Postgres)",
- "type": "go",
- "request": "launch",
- "mode": "auto",
- "program": "${workspaceFolder}",
- "cwd": "${workspaceFolder}",
- "env": {
- "XUI_DEBUG": "true",
- "XUI_LOG_FOLDER": "x-ui",
- "XUI_BIN_FOLDER": "x-ui",
- "XUI_DB_TYPE": "postgres",
- "XUI_DB_DSN": "postgres://xui:[email protected]:5432/xui?sslmode=disable",
- "PATH": "C:\\Program Files\\PostgreSQL\\18\\bin;${env:PATH}"
- },
- "console": "integratedTerminal"
- },
- ]
- }
|