Files
Inventaire-gestion/.gitignore

41 lines
737 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# ----- 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
# On versionne 1 seul fichier prod "pivot" ; on ignore les exports datés
Excel/prod/Ratio_prod_20*.xlsm
!Excel/prod/Ratio_prod.xlsm
# ----- Dossiers Auth livrables -----
# On nembarque pas les exe ni .env dans le repo (tu livreras ça en zip)
Excel/**/Auth/*.exe
Excel/**/Auth/*.dll
Excel/**/Auth/*.pdb
Excel/**/Auth/.env
# ----- Systèmes / IDE -----
.DS_Store
Thumbs.db
.idea/
.vscode/