mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 19:01:08 +02:00
13 lines
251 B
Bash
Executable file
13 lines
251 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
echo "🔄 Running database migrations..."
|
|
|
|
# Run actual migrations (creates schemas + tables)
|
|
pnpm migration:run
|
|
|
|
echo "✅ Migrations complete"
|
|
|
|
# Start the application
|
|
echo "🚀 Starting Mana Core Auth..."
|
|
exec node dist/main.js
|