10 lines
183 B
Bash
Executable File
10 lines
183 B
Bash
Executable File
#!/bin/bash
|
|
parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
|
|
|
|
set -e
|
|
|
|
npx zenstack generate
|
|
npx prisma db push
|
|
npx remix vite:build
|
|
npx remix-serve build/server/index.js
|