9 lines
105 B
Bash
9 lines
105 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
# Run migrations
|
|
npx prisma migrate deploy
|
|
|
|
# Start the application
|
|
node dist/index.js
|