# Version control & IDE .git/ .gitignore .gitattributes .cursor/ .vscode/ .idea/ # Dependencies (vendor is built before deploy; node_modules not needed on server) node_modules/ # Logs & temp logs/ log/ temp/ tmp/ *.log storage/logs/* !storage/logs/.gitignore storage/framework/views/* !storage/framework/views/.gitignore storage/framework/cache/data/* !storage/framework/cache/data/.gitignore storage/framework/sessions/* !storage/framework/sessions/.gitignore # Local / dev environment (never deploy secrets from Ubuntu) .env .env.* !.env.example # Deploy tooling (stay on CI server only) deploy/keys/ deploy/backups/ deploy/deploy.conf deploy/deploy.conf.listara # Remote backups on Listara (never delete via rsync --delete) deploy-backups/ # OS & editor junk .DS_Store Thumbs.db *.swp *.swo *~ # Tests & dev tooling tests/ .phpunit.result.cache phpunit.xml coverage/ .nyc_output/ # XAMPP / local preview /opt/ # Build cache (assets are built; source maps optional) public/hot