9 lines
117 B
Bash
Executable File
9 lines
117 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
echo "Migrating the database"
|
|
pnpm prisma migrate deploy
|
|
|
|
echo "Starting the server"
|
|
pnpm start |