mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
13 lines
214 B
Bash
Executable File
13 lines
214 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
echo "▶ Running Drizzle codegen..."
|
|
npx drizzle-kit generate
|
|
|
|
echo "▶ Applying migrations..."
|
|
npx drizzle-kit migrate
|
|
|
|
echo "▶ Starting Next.js dev server..."
|
|
exec npm run dev
|