mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-06-25 08:09:18 +02:00
51 lines
718 B
Plaintext
51 lines
718 B
Plaintext
# Vendor directory (third-party code)
|
|
vendor/
|
|
compose.lock
|
|
|
|
### Test databases ###
|
|
app/storage/test.db
|
|
*.db
|
|
*.db-wal
|
|
*.db-shm
|
|
app/.env
|
|
|
|
### Logs ###
|
|
app/storage/logs/admin.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
|
|
|
|
# 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/
|