8 lines
112 B
Bash
8 lines
112 B
Bash
set -e
|
|
|
|
if [ "${FEDEO_RUN_MIGRATIONS:-true}" = "true" ]; then
|
|
npm run migrate
|
|
fi
|
|
|
|
exec node dist/src/index.js
|