15 lines
231 B
Bash
15 lines
231 B
Bash
#!/bin/sh
|
|
|
|
# Wait for PostgreSQL to be ready
|
|
while ! nc -z db 5432; do
|
|
sleep 1
|
|
done
|
|
|
|
# Run database migrations
|
|
echo "Pushing database schema..."
|
|
pnpm run db:push
|
|
|
|
# Start the application
|
|
echo "Starting application..."
|
|
node build
|