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 0ed8ab9137
All checks were successful
Build and push / Pulling repo on server (push) Successful in 3s
perfected automated logins
2023-10-29 19:52:08 +01:00

22 lines
568 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Launch built-in server",
"type": "php",
"request": "launch",
"runtimeArgs": [
"-S",
"localhost:8080",
"-t",
"web"
],
"port": 5902,
"serverReadyAction": {
"action": "openExternally",
"pattern": "listening on http://localhost:([0-9]+)",
"uriFormat": "http://localhost:%s",
},
}
]
}