Last active
February 17, 2020 12:53
-
-
Save simgunz/1c0966f9a32d8c30d6d0fe3945ef529d to your computer and use it in GitHub Desktop.
VSCode launch.json to debug anki
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 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