Fix packaging: ship the full backend tree (0.1.0:46)

The image COPY'd backend/server.py + a few subdirs but missed core_migrations.py,
backend/migrations/, and the Phase-1 modules (thesis_review/entity_merge/
entity_jobs). On the box the migrations never ran (tables absent) and those
endpoints 503'd ("Jobs unavailable"). Now COPY backend wholesale (.dockerignore
keeps __pycache__/data out). Bump to 0.1.0:46.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Keysat
2026-06-05 11:36:56 -05:00
parent 6b3c3aebec
commit bdf9bec4ff
4 changed files with 42 additions and 12 deletions
+3 -2
View File
@@ -10,8 +10,9 @@ export const PACKAGE_TITLE = 'Ten31 Database'
// * 0.1.0:41 (frontend persists auth across refreshes)
// * 0.1.0:42 (Gmail integration) / 0.1.0:43 (Gmail POST-body hotfix)
// * 0.1.0:44 (Phase-0 ingest + MCP server in image; build-index action)
// * Current: 0.1.0:45 (Phase-1 thesis system; dual approval; merge review; in-app index)
export const PACKAGE_VERSION = '0.1.0:45'
// * 0.1.0:45 (Phase-1 thesis system; dual approval; merge review; in-app index)
// * Current: 0.1.0:46 (packaging fix: ship full backend so migrations run + endpoints work)
export const PACKAGE_VERSION = '0.1.0:46'
export const DATA_MOUNT_PATH = '/data'
export const WEB_PORT = 8080