diff --git a/.gitignore b/.gitignore index 555e90e..9bfc2a9 100644 --- a/.gitignore +++ b/.gitignore @@ -188,3 +188,9 @@ cython_debug/ # Built Visual Studio Code Extensions *.vsix +# ignore all artefacts +Reports History/ +Script History/ +Endobest Reporting/ +jsons history/ + diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/Dashboard.iml b/.idea/Dashboard.iml new file mode 100644 index 0000000..418effa --- /dev/null +++ b/.idea/Dashboard.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/dictionaries/project.xml b/.idea/dictionaries/project.xml new file mode 100644 index 0000000..f9c088b --- /dev/null +++ b/.idea/dictionaries/project.xml @@ -0,0 +1,9 @@ + + + + coelioscopie + endobest + endométriose + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..dd4c951 --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,7 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..06ac679 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..95f18a0 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..dfc4ae8 --- /dev/null +++ b/.vscode/launch.json @@ -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" + } + ] +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..ba77f73 --- /dev/null +++ b/.vscode/tasks.json @@ -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": [] + } + ] +} \ No newline at end of file diff --git a/config/Endobest_Dashboard_Config.xlsx b/config/Endobest_Dashboard_Config.xlsx new file mode 100644 index 0000000..a0bf5d2 Binary files /dev/null and b/config/Endobest_Dashboard_Config.xlsx differ diff --git a/config/eb_dashboard_extended_template.xlsx b/config/eb_dashboard_extended_template.xlsx new file mode 100644 index 0000000..8274c39 Binary files /dev/null and b/config/eb_dashboard_extended_template.xlsx differ diff --git a/config/eb_dashboard_monitoring_template.xlsx b/config/eb_dashboard_monitoring_template.xlsx new file mode 100644 index 0000000..83a5a21 Binary files /dev/null and b/config/eb_dashboard_monitoring_template.xlsx differ