You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
249 B

  1. #!/bin/bash
  2. set -e
  3. prisma migrate deploy --schema=./prisma/schema.prisma
  4. if [ -z "$NEXT_PUBLIC_BASE_URL" ]; then
  5. IPS=($(hostname -I))
  6. NEXT_PUBLIC_BASE_URL="http://${IPS[0]}:3000"
  7. fi
  8. NEXTAUTH_URL=$NEXT_PUBLIC_BASE_URL node apps/web/server.js