Files
frigate/.vscode/launch.json
T

29 lines
622 B
JSON
Raw Normal View History

2022-11-30 19:53:45 -03:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Launch Frigate",
2024-09-17 18:42:10 +03:00
"type": "debugpy",
2022-11-30 19:53:45 -03:00
"request": "launch",
2024-09-17 18:42:10 +03:00
"module": "frigate"
2026-03-20 08:24:34 -05:00
},
{
"type": "editor-browser",
"request": "launch",
"name": "Vite: Launch in integrated browser",
"url": "http://localhost:5173"
},
{
"type": "editor-browser",
"request": "launch",
"name": "Nginx: Launch in integrated browser",
"url": "http://localhost:5000"
},
{
"type": "editor-browser",
"request": "attach",
"name": "Attach to integrated browser"
2022-11-30 19:53:45 -03:00
}
]
}