mirror of
https://github.com/khairul169/db-backup-tool.git
synced 2025-04-28 08:39:33 +07:00
12 lines
112 B
Bash
12 lines
112 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# Run migration
|
|
bun run migrate & PID=$!
|
|
wait $PID
|
|
|
|
# Start app
|
|
bun start & PID=$!
|
|
wait $PID
|