Files
oci-portal/.vscode/launch.json
T
Wang Defa dbba1f4905
CI / test (push) Successful in 30s
Release / release (push) Successful in 49s
发布 0.1.0:通知渠道、告警规则、令牌版本与安全加固
2026-07-10 17:38:34 +08:00

27 lines
583 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "启动 oci-portal 后端",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmd/server",
"cwd": "${workspaceFolder}",
"env": {
"DATA_KEY": "dev-data-key",
"JWT_SECRET": "dev-jwt-secret",
"ADMIN_PASSWORD": "admin123",
"GIN_MODE": "debug"
}
},
{
"name": "调试当前测试文件",
"type": "go",
"request": "launch",
"mode": "test",
"program": "${fileDirname}"
}
]
}