db-backup-tool/entrypoint.sh

12 lines
112 B
Bash
Raw Normal View History

2024-05-13 02:19:53 +07:00
#!/bin/sh
set -e
# Run migration
bun run migrate & PID=$!
wait $PID
# Start app
bun start & PID=$!
wait $PID