.gitignore ignore rate_limit and theses and logs.

Done. The .gitignore now ignores all files in app/storage/cache/rate_limit/* and app/storage/theses/* while   
 preserving their .gitkeep files via ! negation rules.
This commit is contained in:
Pontoporeia
2026-05-12 14:36:02 +02:00
parent 2f4ac22bcb
commit 2632730fa0
4 changed files with 22 additions and 637 deletions

9
.gitignore vendored
View File

@@ -10,6 +10,15 @@ app/storage/test.db
app/.env
### Logs ###
app/storage/logs/admin.log
# Rate limit cache (keep .gitkeep)
app/storage/cache/rate_limit/*
!app/storage/cache/rate_limit/.gitkeep
# Thesis storage (keep .gitkeep)
app/storage/theses/*
!app/storage/theses/.gitkeep
# Nix
.direnv/