15 lines
273 B
Bash
Executable File
15 lines
273 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
echo "Migrating the database"
|
|
pnpm prisma migrate deploy
|
|
|
|
echo "Migrating constructFns"
|
|
pnpm tsx src/server/migratePrompts/index.ts
|
|
|
|
echo "Starting the server"
|
|
|
|
pnpm concurrently --kill-others \
|
|
"pnpm start" \
|
|
"pnpm tsx src/server/tasks/worker.ts" |