Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add debugger functionality to vc-authn controller container #337

Merged
merged 2 commits into from
Sep 18, 2023

Conversation

esune
Copy link
Member

@esune esune commented Sep 18, 2023

Allow attaching a debugger to controller code. Launch configuration for VSCode:

{
    "version": "0.1.0",
    "configurations": [
        {
            "name": "Python: Remote Attach",
            "type": "python",
            "request": "attach",
            "port": 5678,
            "host": "localhost",
            "pathMappings": [
                {
                    "localRoot": "${workspaceFolder}/oidc-controller",
                    "remoteRoot": "/app"
                }
            ]
        }
    ]
}

Signed-off-by: Emiliano Suñé <emiliano.sune@gmail.com>
@esune esune requested a review from jamshale September 18, 2023 18:39
@esune esune marked this pull request as draft September 18, 2023 19:18
@jamshale
Copy link
Contributor

Working for me. Very helpful 👍

jamshale
jamshale previously approved these changes Sep 18, 2023
Signed-off-by: Emiliano Suñé <emiliano.sune@gmail.com>
@esune esune marked this pull request as ready for review September 18, 2023 22:08
@esune esune merged commit 243f8de into bcgov:2.0-development Sep 18, 2023
3 checks passed
@esune esune deleted the feat/add-debugger branch September 18, 2023 22:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants