Files
xamxam/.gitignore
Pontoporeia 1ff3c70ebe fix: track vendor JS files, add 'unsafe-inline' to public CSP, gitignore filepond tmp
- Track vendor JS files (filepond, htmx, overtype) that were moved
  to app/public/assets/js/vendor/ but never tracked → missing from deploys
- Add script-src 'self' 'unsafe-inline' to main CSP header so public
  pages (jury fieldset, repertoire, partage) can use inline scripts
  and onclick handlers
- Add storage/tmp/filepond/* to .gitignore with .gitkeep, and exclude
  from deploy rsync to avoid syncing local test uploads to production
2026-05-19 00:08:06 +02:00

45 lines
650 B
Plaintext

# Vendor directory (third-party code)
vendor/
compose.lock
### Test databases ###
app/storage/test.db
*.db
app/.env
### Logs ###
error.log
app/storage/logs/*.log
!app/storage/logs/.gitkeep
app/storage/maintenance.flag
app/storage/cache/*
!app/storage/cache/.gitkeep
app/storage/theses/*
!app/storage/theses/.gitkeep
app/storage/banners/*
!app/storage/banners/.gitkeep
app/storage/tmp/*
!app/storage/tmp/.gitkeep
app/storage/tmp/filepond/*
!app/storage/tmp/filepond/.gitkeep
# Nix
.direnv/
result
# OS files
.DS_Store
Thumbs.db
# IDE
.vscode/
.idea/
/node_modules
# PHPStan cache
.phpstan.result.cache
# PHP CS Fixer cache
.php-cs-fixer.cache