You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
167 B
13 lines
167 B
8 months ago
|
#!/bin/sh
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
echo "Running database migrations"
|
||
|
npx prisma migrate deploy
|
||
|
|
||
|
echo "Seeding the database"
|
||
|
npx prisma db seed
|
||
|
|
||
|
echo "Starting the server"
|
||
|
node main
|