Files
website-enchun-mgr/apps/backend/scripts/migration/migrate-wrapper.sh
pkupuk be7fc902fb feat(backend): update collections, config and migration tools
Update Payload CMS configuration, collections (Audit, Posts), and add migration scripts/reports.
2026-02-11 11:50:23 +08:00

14 lines
246 B
Bash

#!/bin/bash
# Migration wrapper script - loads .env before running tsx
cd "$(dirname "$0")"
# Load .env file
if [ -f .env ]; then
export $(grep -v '^#' .env | xargs)
echo "✓ .env loaded"
fi
# Run the migration script
tsx migrate.ts "$@"