# ============================================================================ # CULTSCALE .gitignore # ============================================================================ # ---------------------------------------------------------------------------- # Dependencies & Package Managers # ---------------------------------------------------------------------------- node_modules .npm # ---------------------------------------------------------------------------- # Environment Variables # ---------------------------------------------------------------------------- .env .env.local .env.*.local # ---------------------------------------------------------------------------- # Build Outputs & Artifacts # ---------------------------------------------------------------------------- # Astro dist .astro/ # Cloudflare Wrangler .wrangler # Railway CLI .railway/ # Railway discovery output (derived) twenty/railway/discovery.json # Railway variable dumps (never commit) twenty/railway/state.json # LaTeX/Presentations *.aux *.fls *.fdb_latexmk *.nav *.out *.snm *.synctex.gz *.toc *.vrb *.xdv # General build artifacts *.zip *.pdf *.tmp # Allow committed proposal PDFs !special-projects/quantech-mam/cultsync-mediacentral-brief.pdf !special-projects/slasherplay/*.pdf # ---------------------------------------------------------------------------- # Logs # ---------------------------------------------------------------------------- logs/ *.log # ---------------------------------------------------------------------------- # Asset Staging # ---------------------------------------------------------------------------- # Temporary import directory for processing new assets # Images are processed here, then moved to src/assets/src/ (web-ready) or src/assets/lib/images/ (original/reference) # This directory should remain empty in version control import/* # ---------------------------------------------------------------------------- # Operating System Files # ---------------------------------------------------------------------------- # macOS .DS_Store # Windows Thumbs.db # Linux/Unix *~ # macOS extended attributes ._* # Vim swap files *.swp *.swo # ---------------------------------------------------------------------------- # IDE & Editor Files # ---------------------------------------------------------------------------- .vscode/ # ---------------------------------------------------------------------------- # Python (for temp tooling) # ---------------------------------------------------------------------------- __pycache__/ *.py[cod] *$py.class .Python venv/ ENV/ .venv/