feat(backend): update collections, config and migration tools

Update Payload CMS configuration, collections (Audit, Posts), and add migration scripts/reports.
This commit is contained in:
2026-02-11 11:50:23 +08:00
parent 8ca609a889
commit be7fc902fb
46 changed files with 5442 additions and 15 deletions

View File

@@ -0,0 +1,13 @@
#!/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 "$@"