Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rajrao/5fc0165178d2ac90cba1f66403b29ed4 to your computer and use it in GitHub Desktop.
Save rajrao/5fc0165178d2ac90cba1f66403b29ed4 to your computer and use it in GitHub Desktop.
//Add the following launch configuration to launch.json. I create
//a specific launch.json in my workspace folder as this setting
//will likely be different for each workspace folder.
//change the "startupFileNameHere" to point to your startup file.
"configurations": [
{
"name": "Python: Run Startup File",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/startupFileNameHere.py",
"console": "integratedTerminal",
"justMyCode": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment