#!/bin/bash echo "🔥 FLAMEBORN TESTNET INITIALIZATION 🔥" echo "Ubuntu Principle: I am because we are" echo "=========================================" # Check if Python is installed if ! command -v python3 &> /dev/null; then echo "❌ Python 3 is not installed" exit 1 fi # Check if pip is installed if ! command -v pip &> /dev/null; then echo "❌ pip is not installed" exit 1 fi echo "📦 Installing dependencies..." pip install -r requirements.txt echo "🗄️ Initializing database..." python3 -c " from main import Base, engine Base.metadata.create_all(bind=engine) print('✅ Database initialized') " echo "🚀 Starting FlameBorn Testnet..." echo "🌐 Network will be available at: http://localhost:8000" echo "📊 API Documentation: http://localhost:8000/docs" echo "🔍 Health Check: http://localhost:8000/ping" echo "📋 Network Manifest: http://localhost:8000/.well-known/manifest.json" echo "" echo "🔥 THE FLAME CANNOT WHISPER - IT MUST ROAR 🔥" echo "" uvicorn main:app --host 0.0.0.0 --port 8000 --reload