mirror of
https://github.com/kyantech/Palmr.git
synced 2025-10-23 06:11:58 +00:00
15 lines
289 B
Bash
15 lines
289 B
Bash
#!/bin/sh
|
|
|
|
echo "Waiting for PostgreSQL..."
|
|
while ! nc -z postgres 5432; do
|
|
sleep 1
|
|
done
|
|
echo "PostgreSQL is up!"
|
|
|
|
echo "Running migrations and seed..."
|
|
npx prisma generate --schema=./prisma/schema.prisma
|
|
npx prisma migrate deploy
|
|
pnpm db:seed
|
|
|
|
echo "Starting application..."
|
|
pnpm start |