Warning
This document is for an old release of Galaxy. You can alternatively view this page in the latest release if it exists or view the top of the latest release's documentation.
Debugging Galaxy¶
Debugging Galaxy in VS Code¶
The following instructions assume that you have cloned your Galaxy fork into the ~/galaxy
directory and have created a VS Code workspace per instructions here
Add the following code snippet to
~/galaxy/.vscode/launch.json
(create the file if it does not already exist){ "version": "0.2.0", "configurations": [ { "name": "Python: Current File (Integrated Terminal)", "type": "python", "request": "launch", "program": "${file}", "console": "integratedTerminal" }, { "name": "Galaxy debug", "type": "python", "request": "launch", "program": "${workspaceFolder}/scripts/paster.py", "args": [ "serve", "config/galaxy_vscode.ini", "--log-file", "galaxy.log", ], } ] }
Re-start VS Code
Add a breakpoint somewhere in your code
Select Run and Debug on Activity Bar, on the far left hand side. In the RUN AND DEBUG drop down, select Galaxy debug (galaxy), and click the Start Debugging button (green arrow)
Galaxy should stop right on the break point you added.
Enjoy your debugging session :-)