# ── arch-dev repo .gitignore ──────────────────────────────────────────────────

# Docker build artifacts
*.tar.gz
*.tar

# Environment / secrets
.env
.env.local
.env.*.local
!.env.example

# Editor
.DS_Store
*.swp
*.swo
*~

# Python
__pycache__/
*.pyc
*.pyo

# Workspace contents (bind mount — user's project files, not ours)
workspace/*
!workspace/.gitkeep

# nvimide: never ship auth material
authorized_keys
*.key
*_rsa
*_ed25519
id_*
ssh_host_*

# local-only compose override (external/migrated home volume, etc.)
docker-compose.override.yml
