|
@@ -8,17 +8,17 @@
|
|
|
"name": "Launch Built-in web server",
|
|
|
"type": "php",
|
|
|
"request": "launch",
|
|
|
+ "program": "${workspaceRoot}/artisan",
|
|
|
+ "args": [
|
|
|
+ "serve",
|
|
|
+ "--port=80",
|
|
|
+ "--host=127.0.0.1"
|
|
|
+ ],
|
|
|
"runtimeArgs": [
|
|
|
"-dxdebug.mode=debug",
|
|
|
"-dxdebug.start_with_request=yes",
|
|
|
- "-dxdebug.log_level=7",
|
|
|
- "artisan",
|
|
|
- "serve",
|
|
|
- "--host=127.0.0.1",
|
|
|
- "--port=80",
|
|
|
- "-v"
|
|
|
+ "-dxdebug.log_level=7"
|
|
|
],
|
|
|
- "program": "",
|
|
|
"cwd": "${workspaceRoot}",
|
|
|
"port": 9003,
|
|
|
"serverReadyAction": {
|