Visual Studio Code debug settings

Visual Studio Code debug settings

Include environment

{
  // Use IntelliSense to learn about possible attributes.
  // Hover to view descriptions of existing attributes.
  // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  "version": "0.2.0",
  "configurations": [
    //  HERE
    {
      "name": "Python: Current File",
      "type": "python",
      "env": {"PYTHONPATH": "${workspaceFolder}${pathSeparator}${env:PYTHONPATH}"},
      "request": "launch",
      "program": "${file}",
      "console": "integratedTerminal",
      "justMyCode": false
    }
  ]
}

Profiler for debugging

{
  // Use IntelliSense to learn about possible attributes.
  // Hover to view descriptions of existing attributes.
  // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  "version": "0.2.0",
  "configurations": [
    // HERE
    {
      "name": "Python: Current File with profiler",
      "type": "python",
      "request": "launch",
      "module": "cProfile",
      "args": [
          "-o", "/tmp/tmp.prof", "${file}"
      ]
    }
  ]
}