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

21 lines
483 B
JSON
Raw Normal View History

2023-10-29 15:58:16 +01:00
{
"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"
},
}
]
}