mirror of
https://github.com/documenso/documenso
synced 2026-04-21 13:27:18 +00:00
12 lines
186 B
Bash
Executable file
12 lines
186 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
SCRIPT_DIR="$(readlink -f "$(dirname "$0")")"
|
|
MONOREPO_ROOT="$(readlink -f "$SCRIPT_DIR/../")"
|
|
|
|
cd "$MONOREPO_ROOT"
|
|
|
|
npm ci
|
|
|
|
npm run prisma:migrate-dev
|
|
|
|
npm run dev
|