Files
drop/build/launch.sh
DecDuck 0a270b267c fix: prisma migrations in docker
i hate prisma so so so so so much
2025-04-20 18:12:29 +10:00

9 lines
255 B
Bash
Executable File

#!/bin/bash
# This file starts up the Drop server by running migrations and then starting the executable
echo "[Drop] performing migrations..."
ls ./prisma/migrations/
prisma migrate deploy
# Actually start the application
node /app/app/server/index.mjs