51 lines
982 B
Plaintext
51 lines
982 B
Plaintext
# ----- Secrets / configs locales -----
|
|
# Ne versionne JAMAIS de .env (mets un .env.example à la place)
|
|
*.env
|
|
|
|
# ----- Python -----
|
|
.venv/
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
*.log
|
|
|
|
# ----- PyInstaller (builds) -----
|
|
build/
|
|
dist/
|
|
*.spec
|
|
*.toc
|
|
*.pkg
|
|
*.pyz
|
|
*.zip
|
|
|
|
# ----- Excel -----
|
|
# Fichiers temporaires d'Excel (~$fichier.xlsm)
|
|
~$*.xls*
|
|
~$*.xlsm
|
|
|
|
# Caches Excel / fichiers locaux non utiles
|
|
Excel/**/Desktop/
|
|
Excel/**/InventairesCache/
|
|
|
|
# Archives prod : on les ignore (elles sont recréées par le .bat)
|
|
Excel/prod/Ratio_Cuisine_20*.xlsm
|
|
Excel/prod/Ratio_Restauration_20*.xlsm
|
|
|
|
# On versionne uniquement les fichiers prod "pivots"
|
|
!Excel/prod/Ratio_Cuisine.xlsm
|
|
!Excel/prod/Ratio_Cuisine_VERSION.txt
|
|
!Excel/prod/Ratio_Restauration.xlsm
|
|
!Excel/prod/Ratio_Restauration_VERSION.txt
|
|
|
|
# On ignore tout le dev (fichiers de travail)
|
|
Excel/dev/
|
|
# (Optionnel si tu veux garder le dossier vide dans Git)
|
|
# !Excel/dev/.gitkeep
|
|
|
|
|
|
# ----- Systèmes / IDE -----
|
|
.DS_Store
|
|
Thumbs.db
|
|
.idea/
|
|
.vscode/ |