From 7befa78bf6920c1c129727e2c359263e5d0e818f Mon Sep 17 00:00:00 2001 From: Pariterre Date: Mon, 11 Aug 2025 11:13:23 -0400 Subject: [PATCH] Added GUI to launch.json --- .vscode/launch.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 56d1418b3..9c19c47c2 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,6 +4,17 @@ // Pour plus d'informations, visitez : https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ + { + "name": "Run examples GUI", + "type": "debugpy", + "request": "launch", + "module": "bioptim.examples", + "justMyCode": true, + "env": { + "PYTHONPATH": "${workspaceFolder}" + }, + "cwd": "${fileDirname}" + }, { "name": "Python : fichier actif", "type": "debugpy",