drop/server/build/launch.sh

9 lines
237 B
Bash
Raw Permalink Normal View History

2024-11-04 20:50:35 +11:00
#!/bin/bash
# This file starts up the Drop server by running migrations and then starting the executable
echo "[Drop] performing migrations..."
pnpm prisma migrate deploy
2024-11-04 20:50:35 +11:00
# Actually start the application
2025-05-10 17:27:39 -04:00
node /app/app/server/index.mjs