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
|
2025-04-20 18:12:29 +10:00
|
|
|
echo "[Drop] performing migrations..."
|
2025-07-31 21:36:01 +10:00
|
|
|
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
|