This repository has been archived on 2023-12-29. You can view files and clone it, but cannot push or open issues or pull requests.
dogstats/.vscode/launch.json
Chris fea847afd2
All checks were successful
Build and push / Pulling repo on server (push) Successful in 3s
auto login when chosen so
2023-10-29 15:58:16 +01:00

21 lines
483 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Launch built-in server",
"type": "php",
"request": "launch",
"runtimeArgs": [
"-S",
"localhost:8080",
"-t",
"web"
],
"hostname": "localhost",
"port": 5902,
"serverReadyAction": {
"action": "openExternally"
},
}
]
}