-
-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathlaunch.json
More file actions
22 lines (22 loc) · 704 Bytes
/
launch.json
File metadata and controls
22 lines (22 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
// 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 : Fichier actuel",
"env": {
"PYTHONPATH": "${workspaceFolder}/src",
"DEV": "true",
"DEBUG": "true"
},
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/src/main.py",
"console": "integratedTerminal",
"envFile": "${workspaceFolder}/.env"
// "preLaunchTask": "select-environment-mock"
}
]
}