8 lines
223 B
Bash
Executable file
8 lines
223 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
echo "Running database migrations..."
|
|
node node_modules/prisma/build/index.js db push 2>&1 || echo "Warning: prisma db push failed, tables may already exist"
|
|
|
|
echo "Starting server..."
|
|
exec node server.js
|