uek-109-LBb/counter_kand/backend/entrypoints/production.sh

14 lines
300 B
Bash
Raw Normal View History

2024-07-02 10:54:15 +02:00
#!/bin/sh
set -e
umask 0002
echo "WAITING FOR DATABASE DB_HOST = $DB_HOST"
./entrypoints/wait-for.sh $DB_HOST:5432
npx sequelize-cli db:create || true
npx sequelize-cli db:migrate --migrations-path src/migrations || true
npx sequelize-cli db:seed:all --seeders-path src/seeders || true
exec "$@"