# ═══════════════════════════════════════════════════════════════════════════════ # 🦊 Foxy Dev Team — .gitignore # ═══════════════════════════════════════════════════════════════════════════════ # ─── Environment & Secrets ──────────────────────────────────────────────────── .env .env.local .env.production *.key *.pem # ─── Python ─────────────────────────────────────────────────────────────────── __pycache__/ *.py[cod] *$py.class *.egg-info/ *.egg dist/ build/ .eggs/ *.whl .mypy_cache/ .ruff_cache/ .pytest_cache/ htmlcov/ .coverage .tox/ .venv/ venv/ env/ # ─── Database ───────────────────────────────────────────────────────────────── *.db *.sqlite *.sqlite3 # ─── Node / Frontend ───────────────────────────────────────────────────────── node_modules/ frontend/dist/ frontend/.vite/ *.tsbuildinfo # ─── Docker ─────────────────────────────────────────────────────────────────── docker-compose.override.yml # ─── IDE & OS ───────────────────────────────────────────────────────────────── .vscode/ .idea/ *.swp *.swo *~ .DS_Store Thumbs.db desktop.ini # ─── Logs & Temp ────────────────────────────────────────────────────────────── *.log logs/ tmp/ temp/ # ─── PID files ──────────────────────────────────────────────────────────────── *.pid