chore: initial commit for asepharyana-hub-scraper

This commit is contained in:
asepharyana
2026-07-09 22:07:03 +07:00
commit 80c96eaa42
190 changed files with 28465 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
# Script to run database migrations manually
echo "Running database migrations..."
cd "$(dirname "$0")/.."
# Build and run the migration binary
cargo run --bin migrate
if [ $? -eq 0 ]; then
echo "✅ Migration completed successfully."
else
echo "❌ Migration failed."
exit 1
fi