41 lines
1.2 KiB
Bash
Executable File
41 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
# Master script to run all next steps after UE5 build completes
|
|
|
|
cd ~/projects/metaverseDubai
|
|
|
|
echo "=========================================="
|
|
echo "Dubai Metaverse - Next Steps Automation"
|
|
echo "=========================================="
|
|
echo ""
|
|
|
|
# Step 1: Verify Installation
|
|
echo "Step 1: Verifying UE5 Installation..."
|
|
./scripts/setup/verify_ue5_installation.sh
|
|
if [ $? -ne 0 ]; then
|
|
echo "⚠ Installation verification failed. Build may still be in progress."
|
|
echo "Check build status: ./scripts/monitoring/ue5_build_monitor.sh"
|
|
exit 1
|
|
fi
|
|
|
|
echo ""
|
|
echo "Step 2: Creating UE5 Project..."
|
|
read -p "Create project now? (y/n) " -n 1 -r
|
|
echo
|
|
if [[ $REPLY =~ ^[Yy]$ ]]; then
|
|
./scripts/setup/create_ue5_project.sh
|
|
else
|
|
echo "Skipped. Run manually: ./scripts/setup/create_ue5_project.sh"
|
|
fi
|
|
|
|
echo ""
|
|
echo "=========================================="
|
|
echo "Next Steps Complete!"
|
|
echo "=========================================="
|
|
echo ""
|
|
echo "Manual steps remaining:"
|
|
echo "1. Launch Unreal Editor and configure project settings"
|
|
echo "2. Import geospatial data"
|
|
echo "3. Create blockout level"
|
|
echo ""
|
|
echo "See NEXT_STEPS_AFTER_BUILD.md for detailed instructions"
|