mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-21 07:26:42 +02:00
- Add Dockerfile for contacts-backend (port 3015) - Add Dockerfile for contacts-web (port 5184) - Add docker-entrypoint.sh for database migrations - Update CI workflow with contacts-backend and contacts-web build jobs - Add contacts services to docker-compose.macmini.yml - Update CORS origins to include contacts.mana.how Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
9 lines
249 B
Bash
9 lines
249 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
echo "📋 Running database migrations..."
|
|
npx drizzle-kit push --config drizzle.config.ts --force || echo "⚠️ Migration failed, continuing anyway..."
|
|
|
|
# Start the application
|
|
echo "🚀 Starting Contacts Backend..."
|
|
exec "$@"
|