1
0

.gitignore 629 B

1234567891011121314151617181920212223
  1. /vendor/
  2. /data/
  3. /.env
  4. /.env.local
  5. .DS_Store
  6. /var/www/data/
  7. *.sqlite
  8. *.sqlite-journal
  9. /node_modules/
  10. /.phpunit.cache/
  11. # Locally-bootstrapped composer.phar used to run composer without a global install.
  12. /composer
  13. /composer.phar
  14. # Claude Code agent runtime — worktrees + session scratch.
  15. # Ignore everything under .claude/ except the committed agent + skill
  16. # definitions, which ship with the repo so any teammate gets `/check`.
  17. /.claude/*
  18. !/.claude/agents/
  19. !/.claude/skills/
  20. # Compiled by the Docker CSS builder stage (or `npm run build:css` for local dev).
  21. /public/assets/css/app.css
  22. /public/assets/js/vendor/
  23. /data/twig-cache/