mirror of
https://github.com/khairul169/db-backup-tool.git
synced 2025-06-17 17:19:32 +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
|