Files
Scrapyard/.gitignore
2026-04-13 10:36:12 +02:00

43 lines
1.9 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# ── Python ────────────────────────────────────────────────────────────────────
__pycache__/
*.py[cod]
*$py.class
*.pyo
.Python
# ── Virtual environment ───────────────────────────────────────────────────────
.venv/
venv/
env/
ENV/
# ── Database ──────────────────────────────────────────────────────────────────
# The live database is never committed only cpu_specs is preserved via the
# bundled seed dump (if one is created). See purge_db.py before committing.
database.db
# ── Logs ──────────────────────────────────────────────────────────────────────
*.log
logs/
# ── Playwright / browser state ────────────────────────────────────────────────
browser_data/
# ── Maintenance / dev scripts (not part of the shipped app) ──────────────────
purge_db.py
_dev/
# ── OS / editor noise ─────────────────────────────────────────────────────────
.DS_Store
Thumbs.db
desktop.ini
.idea/
.vscode/
*.swp
*.swo
# ── Secrets / env files ───────────────────────────────────────────────────────
.env
.env.*
*.env