chore: Add uv.lock and gitignore celerybeat-schedule files

- Updated uv.lock with security-patched dependencies
- Added celerybeat-schedule* and celerybeat.pid to .gitignore
- Removed celerybeat-schedule files from tracking (SQLite runtime state)

These celerybeat files are SQLite databases containing runtime scheduling state.
They should not be tracked because:
- They're binary files that change during celery beat execution
- They cause merge conflicts between developers
- Each environment regenerates them automatically on startup
This commit is contained in:
pacnpal
2026-01-09 08:42:17 -05:00
parent e2103a49ce
commit 8ff6b7ee23
4 changed files with 50 additions and 44 deletions

4
.gitignore vendored
View File

@@ -30,6 +30,10 @@ db.sqlite3-journal
/backend/staticfiles/
/backend/media/
# Celery Beat schedule database (runtime state, regenerated automatically)
celerybeat-schedule*
celerybeat.pid
# UV
.uv/
backend/.uv/