7 lines
130 B
Bash
7 lines
130 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
echo "running migrations"
|
|
npm run migrate:up:all
|
|
echo "starting bridge-frontend"
|
|
exec dumb-init npm run start
|