Files
Zero/entrypoint.sh
2025-05-04 07:57:46 +05:30

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"