Skip to content

Commit 5913e24

Browse files
committed
re-added xdebug to vscode
1 parent c943462 commit 5913e24

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"request": "launch",
1111
"port": 9003,
1212
"pathMappings": {
13-
"/usr/src/api": "${workspaceFolder}"
13+
"/usr/src/api/": "${workspaceFolder/api"
1414
}
1515
},
1616
{
@@ -19,7 +19,7 @@
1919
"request": "launch",
2020
"port": 9000,
2121
"pathMappings": {
22-
"/usr/src/api": "${workspaceFolder}"
22+
"/usr/src/api/": "${workspaceFolder}/api"
2323
}
2424
}
2525
]

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dev-daemon:
2121
down:
2222
docker-compose down
2323
api-install:
24-
docker exec -it api composer install --no-dev --no-cache --ignore-platform-reqs
24+
docker exec -it api composer install --no-cache --ignore-platform-reqs
2525
api-debug:
2626
docker exec -it api php artisan serve --host 0.0.0.0 --port 8000
2727
api-serve:

0 commit comments

Comments
 (0)