uptime-kuma-dashboard/.vscode/launch.json
Marco De Araujo 6e94081db2
Some checks failed
Multi-Platform Release Build / build (false, linux/arm64, native) (push) Successful in 5m22s
Multi-Platform Release Build / build (true, build-essential gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64, map[CARGO_TARGET_X86_64_PC_WINDOWS_GNU_LINKER:x86_64-w64-mingw32-gcc CC_x86_64_pc_windows_gnu:x86_64-w64-mingw32-gcc], linux/amd64, x86_64-pc-windows-gnu) (push) Successful in 13m0s
Multi-Platform Release Build / build (true, linux/amd64, x86_64-unknown-linux-gnu) (push) Failing after 8m11s
Multi-Platform Release Build / create-release (push) Has been skipped
Testing workflow
2026-01-02 14:31:05 -04:00

31 lines
934 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Debug executable 'uptime-kuma-dashboard'",
"type": "lldb",
"request": "launch",
"cargo": {
"args": [
"run",
"-- --base-url=http://192.168.69.10:3001/ --slug formgen",
]
},
"args": []
},
{
"name": "Debug unit tests in executable 'uptime-kuma-dashboard'",
"type": "lldb",
"request": "launch",
"cargo": {
"args": [
"test",
"--bin=uptime-kuma-dashboard"
]
}
}
]
}