# ============================================================================
# futureagi/.gitignore — scoped backend-only rules.
# The root .gitignore covers Python caches, venvs, env/secrets, IDE, logs,
# Docker volumes, core dumps, ML artifacts, and Jupyter checkpoints. Only
# rules that are specific to the Django backend live here, so this file
# travels cleanly if `futureagi/` is ever extracted as a standalone repo.
# ============================================================================

# Django static-file roots (collectstatic output + top-level static dir)
/static
/staticfiles
static/

# Internal data / comparison output
/custom-catalog
compare/
media/
metadata/

# Django venv activation script
activate/

# Legacy WSGI leftover
wsgi

# Type-check baseline backups
mypy-baseline.txt.backup
# === Python virtualenvs + caches (added by setup) ===
.venv
.venv/
.venv*/
**/.venv
**/.venv/
**/.venv*/
venv
venv/
**/venv
**/venv/
__pycache__/
**/__pycache__/
*.pyc
*.pyo
.pytest_cache/
**/.pytest_cache/
.ruff_cache/
**/.ruff_cache/
.mypy_cache/
**/.mypy_cache/
.uv-cache/
**/.uv-cache/
.hypothesis/
.tox/
.nox/
coverage/
htmlcov/
test-results/
playwright-report/
*.out
.DS_Store
**/.DS_Store

*.core