Research-Stack/5-Applications/nodupe/.gitignore
2026-05-05 21:15:26 -05:00

98 lines
2.1 KiB
Text

# =============================================================================
# NoDupeLabs Professional .gitignore
# =============================================================================
# Python / General
# =============================================================================
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# =============================================================================
# Virtual Environments
# =============================================================================
.env
.envrc
.venv/
venv/
ENV/
env/
.venv-audit/
# =============================================================================
# Testing & Coverage
# =============================================================================
.pytest_cache/
.coverage
.coverage.*
coverage.xml
coverage.json
htmlcov/
.tox/
.nox/
.hypothesis/
*.cover
.pytest_cache/
# =============================================================================
# IDE & Editor
# =============================================================================
.vscode/
.idea/
*.swp
*.swo
*~
.clinerules/
# =============================================================================
# Type Checkers & Linters
# =============================================================================
.mypy_cache/
.dmypy.json
dmypy.json
.pyre/
.pytype/
.ruff_cache/
.pybuilder/
cython_debug/
# =============================================================================
# Project Specific
# =============================================================================
# NoDupeLabs backup data (environment-specific with absolute paths)
.nodupe/
!.nodupe/backups/README.md
!.nodupe/backups/RECOVERY.txt
# Database files
*.db
*.sqlite
*.sqlite3
# Generated reports (keep reports/ directory, ignore generated files)
reports/*.txt
reports/*.json
!reports/.gitkeep
# Temporary files
output/
remote_storage/
shard_*.db
*.log
# =============================================================================
# OS Files
# =============================================================================
.DS_Store
Thumbs.db