Files
xamxam/.gitignore
Pontoporeia fb752f5ba2 cleanup: remove _write guard — FilePond external API doesn't expose _write
ro=['fire','_read','_write'] is an exclusion list in Ee(), not an inclusion
list. The external pond object has none of these. The only safe interception
point is inside the closure (vendor patch), but the root-cause fix
(fileValidateSizeFilter .filename → .name) already prevents the crash.
2026-06-10 00:18:49 +02:00

61 lines
884 B
Plaintext

# Composer vendor directory (third-party PHP code) — root only
/vendor/
compose.lock
### Test databases ###
app/storage/test.db
*.db
*.db-wal
*.db-shm
app/.env
### Logs ###
error.log
app/storage/logs/admin.log
app/public/admin/actions/error.log
# Rate limit cache (keep .gitkeep)
app/storage/cache/rate_limit/*
!app/storage/cache/rate_limit/.gitkeep
# FilePond tmp uploads + trash (keep .gitkeep)
app/storage/tmp/filepond/*
!app/storage/tmp/filepond/.gitkeep
app/storage/tmp/_trash/*
# Thesis storage (keep .gitkeep)
app/storage/theses/*
!app/storage/theses/.gitkeep
app/storage/tfe/*
!app/storage/tfe/.gitkeep
app/public/admin/actions/error.log
error.log
# 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
# PHPUnit
.phpunit.result.cache
coverage/