mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 21:41:09 +02:00
- Skip automatic migrations in Docker - tables are managed via 'pnpm db:push' locally - Simplifies startup and avoids migration conflicts 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
10 lines
309 B
Bash
Executable file
10 lines
309 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
# Skip migrations in Docker - tables are managed via 'pnpm db:push' locally
|
|
# For fresh databases, run 'pnpm db:push' manually first
|
|
echo "📋 Skipping migrations (run 'pnpm db:push' locally if needed)"
|
|
|
|
# Start the application
|
|
echo "🚀 Starting Mana Core Auth..."
|
|
exec node dist/main.js
|