mirror of
https://github.com/remnawave/backend.git
synced 2026-07-10 10:03:12 +00:00
22 lines
No EOL
447 B
Bash
22 lines
No EOL
447 B
Bash
#!/bin/sh
|
|
|
|
echo "Starting entrypoint script..."
|
|
|
|
PRISMA="/opt/app/node_modules/.bin/prisma"
|
|
|
|
echo "Migrating database..."
|
|
if ! "$PRISMA" migrate deploy; then
|
|
echo "Database migration failed! Exiting container..."
|
|
exit 1
|
|
fi
|
|
|
|
echo "Migrations deployed successfully!"
|
|
|
|
echo "Seeding database..."
|
|
if ! "$PRISMA" db seed; then
|
|
echo "Database seeding failed! Exiting container..."
|
|
exit 1
|
|
fi
|
|
|
|
echo "Entrypoint script completed."
|
|
exec "$@" |