# Gitignore pour le projet e-voting-system # Python __pycache__/ *.py[cod] *$py.class *.so .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ backend/lib/ backend/lib64/ parts/ sdist/ var/ wheels/ *.egg-info/ .installed.cfg *.egg # Virtual environments venv/ ENV/ env/ .venv # IDE .vscode/ .idea/ *.swp *.swo *~ .DS_Store # Testing .pytest_cache/ .coverage htmlcov/ .tox/ # Environment variables .env .env.local # Database *.db *.sqlite *.sqlite3 # Logs *.log logs/ # Docker docker-compose.override.yml # Project specific rapport/*.html rapport/*.pdf # Exception for technical report !rapport/technical_report.pdf *.tmp # Node.js build artifacts .next/ node_modules/ # Backups and archives .backups/ *.bak *.backup