archy/complete-setup.sh
Dorian 0d073fa89e Add comprehensive installation and setup documentation
- Add GETTING_STARTED.md with quick start guide and development modes
- Add INSTALL.sh automated installation script
- Add INSTALLATION_CHECKLIST.md, INSTALLATION_SUCCESS.md, and INSTALLATION_SUMMARY.md
- Add QUICK_REFERENCE.md for common commands
- Add SETUP_GUIDE.md with detailed setup instructions
- Update README.md with improved project overview
- Add did-wallet app dependencies and node_modules
2026-01-27 17:18:21 +00:00

53 lines
1.2 KiB
Bash
Executable File

#!/bin/bash
# Complete Rust Setup and Build Backend
echo "============================================"
echo "Completing Rust Setup"
echo "============================================"
echo ""
# Add Rust to PATH for current shell
export PATH="$HOME/.cargo/bin:$PATH"
# Verify Rust is working
echo "Checking Rust installation..."
rustc --version
cargo --version
echo ""
echo "============================================"
echo "Building Rust Backend"
echo "============================================"
echo ""
cd core
# Build the backend
echo "Building backend (this may take a few minutes)..."
cargo build
echo ""
echo "============================================"
echo "Installation Complete!"
echo "============================================"
echo ""
echo "✓ All dependencies installed"
echo "✓ Backend built successfully"
echo ""
echo "Next steps:"
echo ""
echo "1. Start the backend (Terminal 1):"
echo " cd core"
echo " cargo run --bin archipelago"
echo ""
echo "2. Start the frontend (Terminal 2):"
echo " cd neode-ui"
echo " npm run dev"
echo ""
echo "3. Open your browser:"
echo " http://localhost:8100"
echo ""
echo "Or use the quick start script:"
echo " ./scripts/dev-start.sh"
echo ""