mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-09 20:12:10 +10:00
* fix: attempt fix from https://github.com/reproducible-containers/buildkit-cache-dance * fix: lint * fix: migrate to pnpm to see if it builds * fix: comment out unified deps builder * fix: remove dependency on deps * fix: shamefully hoist deps
9 lines
237 B
Bash
Executable File
9 lines
237 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..."
|
|
pnpm prisma migrate deploy
|
|
|
|
# Actually start the application
|
|
node /app/app/server/index.mjs
|