Skip to content

Instantly share code, notes, and snippets.

@simgunz
Last active February 17, 2020 12:53
Show Gist options
  • Save simgunz/1c0966f9a32d8c30d6d0fe3945ef529d to your computer and use it in GitHub Desktop.
Save simgunz/1c0966f9a32d8c30d6d0fe3945ef529d to your computer and use it in GitHub Desktop.
VSCode launch.json to debug anki
{
// 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": [
{
"name": "Anki",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/anki/anki/qt/runanki",
"args": ["-b", "${workspaceFolder}/anki/profiles/"],
"console": "integratedTerminal",
"env": {
"QTWEBENGINE_REMOTE_DEBUGGING": "8080",
},
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment