Skip to content

Debugging Backend SIM

Christopher edited this page Jan 16, 2026 · 1 revision

Steps

Follow these instructions in order to successfully run your environment in debug mode and hit breakpoints.

1. Install Debugpy.

pip install debugpy

2.Start the front-end.

In a new terminal cd front/ and then run npm run dev

3. Start the backend.

In a new terminal run npm run dev:backend:debug This will now open a port and wait for debugpy to attach to the backend process.

4. Attach Debugpy to the Backend

  1. On the right side of VS Code, click the Run and Debug icon.
  2. Press the green play button to start debugging.

VS Code Debug Panel

#5. You should be able to run it now!

Clone this wiki locally