mirror of
https://github.com/Mail-0/Zero.git
synced 2026-06-29 15:26:42 +00:00
8 lines
133 B
Bash
8 lines
133 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
echo "Running database migrations..."
|
|
bun run db:migrate
|
|
|
|
echo "Starting the app..."
|
|
bun run start --host "0.0.0.0" |