app/: production port — Postgres + Prisma + OTM-account auth (v0.2.0)

Prototype stays untouched (Bonna's laptop daily driver until cutover).
app/ is the deployable bms-backbone: same routes/frontend, Prisma models
replacing node:sqlite, session-cookie login backed by a User table seeded
via the platform SEED_OWNER_* convention (bcryptjs), /api/health with
APP_VERSION, photos/files under DATA_DIR (/app/data uploads mount),
Dockerfile + entrypoint (prisma db push + owner seed + serve), and a
one-shot sqlite→postgres migration script for Bonna's existing data.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Bonna
2026-08-06 22:10:55 -05:00
parent f4c1d6ca94
commit c4ba1591c7
13 changed files with 1512 additions and 0 deletions

17
app/package.json Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "bms-backbone",
"version": "0.2.0",
"private": true,
"type": "module",
"scripts": {
"start": "node server.mjs",
"db:push": "prisma db push"
},
"dependencies": {
"@prisma/client": "^6.7.0",
"bcryptjs": "^3.0.2"
},
"devDependencies": {
"prisma": "^6.7.0"
}
}