* Add self host setup * Improve blunders * Move to bull mq * More changes * Add example code for sending test emails
13 lines
177 B
Bash
13 lines
177 B
Bash
#!/bin/sh
|
|
|
|
set -x
|
|
|
|
echo "Deploying prisma migrations"
|
|
|
|
pnpx prisma migrate deploy --schema ./apps/web/prisma/schema.prisma
|
|
|
|
echo "Starting web server"
|
|
|
|
node apps/web/server.js
|
|
|