1
0
mirror of https://github.com/dkmstr/openuds-gui.git synced 2024-10-26 08:55:23 +03:00
openuds-gui/.vscode/launch.json

22 lines
754 B
JSON
Raw Normal View History

2024-07-10 05:50:36 +03:00
{
// 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": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome",
"url": "http://172.27.0.1:8000", // For auth first, later go to :9000
"webRoot": "${workspaceFolder}"
},
{
"type": "firefox",
"request": "launch",
"name": "Launch Firefox",
"url": "http://172.27.0.1:8000", // For auth first, later go to :9000
"webRoot": "${workspaceFolder}"
}
]
}