From 68a8095af82285d6b6958722fcbbee839e7bb6b4 Mon Sep 17 00:00:00 2001 From: Corentin Date: Sat, 2 Nov 2024 19:50:50 +0100 Subject: [PATCH] Added .vscode to simplify the configuration for users --- .gitignore | 2 -- .vscode/launch.json | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index 6b3a796..e6b8d9b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,4 @@ # ---> VisualStudioCode -*.vscode/* -*.vscode* !.vscode/settings.json !.vscode/tasks.json !.vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..3b1b316 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,19 @@ +{ + // Utilisez IntelliSense pour en savoir plus sur les attributs possibles. + // Pointez pour afficher la description des attributs existants. + // Pour plus d'informations, visitez : https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Débogueur Python : Django", + "type": "debugpy", + "request": "launch", + "args": [ + "runserver" + ], + "django": true, + "autoStartBrowser": false, + "program": "${workspaceFolder}/manage.py" + } + ] +} \ No newline at end of file