8 lines
120 B
Bash
8 lines
120 B
Bash
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
/opt/wait-for-it.sh postgres:5432
|
|
npm run migration:run
|
|
npm run seed:run
|
|
npm run start:prod
|