26 lines
449 B
Plaintext
26 lines
449 B
Plaintext
# ── arch-dev repo .gitignore ──────────────────────────────────────────────────
|
|
|
|
# Docker build artifacts
|
|
*.tar.gz
|
|
*.tar
|
|
|
|
# Environment / secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Editor
|
|
.DS_Store
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
|
|
# Workspace contents (bind mount — user's project files, not ours)
|
|
workspace/*
|
|
!workspace/.gitkeep
|