The backup/*.sql* patterns missed pre-change .env copies, which hold live Stripe and SMTP secrets and were committable. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
21 lines
399 B
Text
21 lines
399 B
Text
.env
|
|
.env.*
|
|
!.env.example
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
.venv/
|
|
venv/
|
|
# Everything under backup/ is operational data, never source: DB dumps and
|
|
# pre-change .env copies (which hold live Stripe/SMTP secrets). The earlier
|
|
# backup/*.sql* patterns missed the .env copies — ignore the whole directory.
|
|
backup/
|
|
*.egg-info/
|
|
build/
|
|
dist/
|
|
.coverage
|
|
.mypy_cache/
|
|
.superpowers/
|