/ .gitignore
.gitignore
1 site/ 2 3 # Python 4 __pycache__/ 5 *.py[cod] 6 *$py.class 7 *.so 8 .Python 9 build/ 10 develop-eggs/ 11 dist/ 12 downloads/ 13 eggs/ 14 .eggs/ 15 lib/ 16 lib64/ 17 parts/ 18 sdist/ 19 var/ 20 wheels/ 21 *.egg-info/ 22 .installed.cfg 23 *.egg 24 25 # Virtual environments 26 venv/ 27 .venv/ 28 ENV/ 29 env/ 30 .env.local 31 32 # Environment files (contain secrets) - NEVER commit these 33 .env 34 .env.* 35 !.env.example 36 *.env 37 !env.example 38 scripts/scraper/.env 39 */.env 40 41 # Playwright 42 playwright-report/ 43 playwright/.cache/ 44 test-results/ 45 46 # IDE 47 .idea/ 48 .vscode/ 49 *.swp 50 *.swo 51 *.sublime-* 52 *.code-workspace 53 54 # OS 55 .DS_Store 56 .DS_Store? 57 ._* 58 .Spotlight-V100 59 .Trashes 60 ehthumbs.db 61 Thumbs.db 62 *~ 63 64 # Logs (keep structure, ignore large rotated logs) 65 *.log.* 66 *.log-* 67 68 # Temporary files 69 *.tmp 70 *.temp 71 *.bak 72 *.backup 73 *.old 74 75 # Node (if any) 76 node_modules/ 77 npm-debug.log 78 yarn-error.log