11 lines
151 B
Bash
11 lines
151 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
echo "Waiting for mysql"
|
||
|
|
/wait || exit 111
|
||
|
|
|
||
|
|
echo "Running migrations"
|
||
|
|
npx prisma migrate dev
|
||
|
|
|
||
|
|
echo "Starting webapp"
|
||
|
|
exec node src/index.js
|