46d1674e8b
Le commit precedent a embarque par accident venv.old-py38/ (ancien virtualenv Python 3.8, vestige de la panne DSM du 12/07) et trilium_api.py.bak-attrid. Un venv ne se versionne jamais. .gitignore durci : venv.old-py38/, venv*/, *.bak-*. Fichiers desindexes (restent sur disque).
30 lines
435 B
Plaintext
30 lines
435 B
Plaintext
# Secrets — JAMAIS versionner
|
|
.env
|
|
oauth_state.json
|
|
ssh-keys/
|
|
|
|
# Environnement Python
|
|
venv/
|
|
__pycache__/
|
|
*.pyc
|
|
.pytest_cache/
|
|
|
|
# Backups et patches jetables
|
|
*.bak
|
|
*.bak_*
|
|
patch_*.py
|
|
|
|
# Logs et PID
|
|
*.log
|
|
*.pid
|
|
|
|
# Dépôt git imbriqué (test)
|
|
mon-depot/
|
|
|
|
# Fichiers d'IDs runtime (générés, non sensibles mais spécifiques à l'instance)
|
|
entites_ids.json
|
|
entites_sliding.json
|
|
entites_codeversioning.json
|
|
lint_reports/
|
|
venv.old-py38/
|