Clean: Archive large log files and remove core dump

- Compressed backend/combined.log (87MB) → 4.7MB
- Compressed backend/error.log (86MB) → 4.6MB
- Compressed archive/logs/combined.log (204MB) → 3.0MB
- Removed core dump (1.1GB)
- Updated .gitignore to prevent future large files

Archived logs in .archived_logs/ directory
Ready for GitHub push
This commit is contained in:
alexpolo1
2025-11-26 13:30:20 +00:00
parent ddc005280d
commit 45181e634f
4 changed files with 21 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

21
.gitignore vendored
View File

@@ -1 +1,22 @@
node_modules
# Large log files
*.log
backend/*.log
archive/logs/*.log
logs/*.log
# Core dumps
core
# Temporary files
tmp/
_temp/
temp/
# OS files
.DS_Store
Thumbs.db
# Node modules
node_modules/