|
| 1 | +# ==================================================================== |
| 2 | +# DOCKERIGNORE PRINCIPAL - PROJET ACFC |
| 3 | +# ==================================================================== |
| 4 | +# Fichiers et dossiers à exclure du contexte de build Docker |
| 5 | +# Appliqué lors du build depuis la racine (docker-compose.yml) |
| 6 | + |
| 7 | +# ================================================================ |
| 8 | +# FICHIERS DE DÉVELOPPEMENT ET CONFIGURATION |
| 9 | +# ================================================================ |
| 10 | +# Variables d'environnement et secrets |
| 11 | +.env |
| 12 | +.env.* |
| 13 | +*.env |
| 14 | +.env.local |
| 15 | +.env.development |
| 16 | +.env.production |
| 17 | + |
| 18 | +# Configuration IDE et éditeurs |
| 19 | +.vscode/ |
| 20 | +.idea/ |
| 21 | +*.swp |
| 22 | +*.swo |
| 23 | +*~ |
| 24 | + |
| 25 | +# Configuration Git |
| 26 | +.git/ |
| 27 | +.gitignore |
| 28 | +.gitattributes |
| 29 | + |
| 30 | +# ================================================================ |
| 31 | +# FICHIERS PYTHON ET CACHE |
| 32 | +# ================================================================ |
| 33 | +# Cache Python |
| 34 | +__pycache__/ |
| 35 | +*.py[cod] |
| 36 | +*$py.class |
| 37 | +*.so |
| 38 | +.Python |
| 39 | +build/ |
| 40 | +develop-eggs/ |
| 41 | +dist/ |
| 42 | +downloads/ |
| 43 | +eggs/ |
| 44 | +.eggs/ |
| 45 | +lib/ |
| 46 | +lib64/ |
| 47 | +parts/ |
| 48 | +sdist/ |
| 49 | +var/ |
| 50 | +wheels/ |
| 51 | +share/python-wheels/ |
| 52 | +*.egg-info/ |
| 53 | +.installed.cfg |
| 54 | +*.egg |
| 55 | +MANIFEST |
| 56 | + |
| 57 | +# Environnements virtuels Python |
| 58 | +venv/ |
| 59 | +env/ |
| 60 | +ENV/ |
| 61 | +env.bak/ |
| 62 | +venv.bak/ |
| 63 | +.virtualenv/ |
| 64 | + |
| 65 | +# ================================================================ |
| 66 | +# FICHIERS DE TEST ET QUALITÉ CODE |
| 67 | +# ================================================================ |
| 68 | +# Tests et coverage |
| 69 | +.pytest_cache/ |
| 70 | +.coverage |
| 71 | +htmlcov/ |
| 72 | +.tox/ |
| 73 | +.nox/ |
| 74 | +coverage.xml |
| 75 | +*.cover |
| 76 | +*.py,cover |
| 77 | +.hypothesis/ |
| 78 | + |
| 79 | +# Linting et formatage |
| 80 | +.mypy_cache/ |
| 81 | +.dmypy.json |
| 82 | +dmypy.json |
| 83 | +.ruff_cache/ |
| 84 | + |
| 85 | +# ================================================================ |
| 86 | +# LOGS ET FICHIERS TEMPORAIRES |
| 87 | +# ================================================================ |
| 88 | +# Logs (sauf structure de dossiers) |
| 89 | +logs/*.log |
| 90 | +logs/**/*.log |
| 91 | +logs/fichiers_logs/* |
| 92 | +!logs/.gitkeep |
| 93 | +!logs/__init__.py |
| 94 | + |
| 95 | +# Fichiers temporaires |
| 96 | +*.tmp |
| 97 | +*.temp |
| 98 | +temp/ |
| 99 | +tmp/ |
| 100 | + |
| 101 | +# ================================================================ |
| 102 | +# DOCUMENTATION ET RAPPORTS |
| 103 | +# ================================================================ |
| 104 | +# Documentation générée |
| 105 | +docs/_build/ |
| 106 | +.readthedocs.yml |
| 107 | + |
| 108 | +# Rapports de suivi (versions de travail) |
| 109 | +suivi_realisation_auto_*.md |
| 110 | +!suivi_realisation.md |
| 111 | + |
| 112 | +# ================================================================ |
| 113 | +# FICHIERS SPÉCIFIQUES DÉVELOPPEMENT |
| 114 | +# ================================================================ |
| 115 | +# Scripts de test local |
| 116 | +test-docker-ci.* |
| 117 | +clients_api_example.py |
| 118 | + |
| 119 | +# Sauvegardes |
| 120 | +*.backup |
| 121 | +*.bak |
| 122 | + |
| 123 | +# OS et système |
| 124 | +.DS_Store |
| 125 | +Thumbs.db |
| 126 | +*.log |
| 127 | + |
| 128 | +# ================================================================ |
| 129 | +# EXCLUSIONS CONDITIONNELLES SERVICES |
| 130 | +# ================================================================ |
| 131 | +# Exclure les autres Dockerfiles si build spécifique |
| 132 | +api_acfc/dockerfile.api |
| 133 | +mariadb/dockerfile.mariadb |
| 134 | +# Le dockerfile.app est inclus car c'est celui utilisé par docker-compose |
0 commit comments