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

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": []
}
]
}