Skip to content

Instantly share code, notes, and snippets.

@bracca95
Last active April 23, 2024 15:22
Show Gist options
  • Save bracca95/f7a07c066489d16f7411bf01eee1ce86 to your computer and use it in GitHub Desktop.
Save bracca95/f7a07c066489d16f7411bf01eee1ce86 to your computer and use it in GitHub Desktop.
vscode launch.json file for python projects

Create a new launch.json in your ${PROJ_DIR}.vscode to run the debugger. Thanks to https://stackoverflow.com/a/55072246

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Python: Current File",
            "type": "debugpy",
            "request": "launch",
            "console": "integratedTerminal",
            "cwd": "${workspaceFolder}",
            "program": "${workspaceFolder}/main.py"
        }
    ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment