Skip to content
  • This project
    • Loading...
  • Sign in

文鑫 / guduo_spider

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • guduo_spider
  • .vscode
  • launch.json
  • wenxin's avatar
    update · 39153b19
    39153b19 Browse Files
    wenxin authored 2024-12-23 09:34:49 +0800
launch.json 372 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
{
  "version": "0.2.0",
  "configurations": [
    {
      "name": "Python: Current File with Modified PYTHONPATH",
      "type": "python",
      "request": "launch",
      "program": "${file}",
      "console": "integratedTerminal",
      "justMyCode": true,
      "env": {
        "PYTHONPATH": "${workspaceFolder}/parent_directory:${env:PYTHONPATH}"
      }
    }
  ]
}