Refonte authentification en crypté
This commit is contained in:
41
.gitignore
vendored
41
.gitignore
vendored
@@ -1,10 +1,41 @@
|
||||
.env
|
||||
*.txt
|
||||
# ----- Secrets / configs locales -----
|
||||
# Ne versionne JAMAIS de .env (mets un .env.example à la place)
|
||||
*.env
|
||||
|
||||
# ----- Python -----
|
||||
.venv/
|
||||
__pycache__/
|
||||
*.pyc
|
||||
*.pyo
|
||||
*.pyd
|
||||
*.log
|
||||
.DS_Store
|
||||
# Ignorer tous les fichiers de travail dans Excel/dev
|
||||
Excel/dev/*
|
||||
|
||||
# ----- 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 n’embarque 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/
|
||||
Reference in New Issue
Block a user