Skip to content

Commit

Permalink
root: Improve debugging experience (#12961)
Browse files Browse the repository at this point in the history
* set remote debugging path to working directory

* add docker-compose.override.yml to gitignore

* fix missing trailing newline

Signed-off-by: Jens Langhammer <[email protected]>

---------

Signed-off-by: Jens Langhammer <[email protected]>
Co-authored-by: Jens Langhammer <[email protected]>
  • Loading branch information
sirux88 and BeryJu authored Feb 14, 2025
1 parent 39f7bc8 commit de20897
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -209,3 +209,6 @@ source_docs/

### Golang ###
/vendor/

### Docker ###
docker-compose.override.yml
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "/"
"remoteRoot": "."
}
],
"django": true
Expand All @@ -28,7 +28,7 @@
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "/"
"remoteRoot": "."
}
],
"django": true
Expand Down

0 comments on commit de20897

Please sign in to comment.