#!/bin/sh set -e if [ -n "$DATABASE_URL" ]; then echo "Running database migrations..." node scripts/migrate.mjs fi exec node server.js