File size: 333 Bytes
c918afd
 
 
ce4c301
c918afd
ce4c301
 
c918afd
bdc6309
 
 
c918afd
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
set -e

echo "[entrypoint] Syncing Prisma schema (ephemeral SQLite)..."
cd backend
# db push avoids broken migration issues on ephemeral containers
npx prisma db push --accept-data-loss

echo "[entrypoint] Seeding demo users..."
node prisma/seed.js

echo "[entrypoint] Starting PolySignal server..."
exec node src/index.js