gitignore config

This commit is contained in:
2025-12-12 23:37:11 +01:00
parent 790eb75c2c
commit b49ce8a448
12 changed files with 99 additions and 0 deletions

16
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python Debugger: Current File",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
}
]
}

27
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,27 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build PyInstaller EXE (to Script Dir)",
"type": "shell",
"command": "${command:python.interpreterPath}",
"args": [
"-m", "PyInstaller",
"--onefile",
"--add-data",
"config:config",
// NOUVEL ARGUMENT : Définit le dossier de sortie
"--distpath",
"${fileDirname}",
"${file}"
],
"presentation": {
"reveal": "always",
"panel": "new",
"showReuseMessage": false
},
"group": "build",
"problemMatcher": []
}
]
}