Blog Deployment Instructions

Quick Deploy to GitHub Pages

GitHub now requires a Personal Access Token instead of password for git operations.

Step 1: Create Personal Access Token (2 minutes)

  1. Go to: https://github.com/settings/tokens
  2. Click “Generate new token” → “Generate new token (classic)”
  3. Settings:
    • Note: “Blog deployment”
    • Expiration: 90 days (or No expiration)
    • Scopes: Check repo (full control)
  4. Click “Generate token”
  5. COPY THE TOKEN (you won’t see it again!)

Step 2: Deploy Blog (2 minutes)

Open PowerShell and run:

cd d:\AICluster\blog

# Initialize git
git init
git branch -M main

# Configure git
git config user.name "Arms-Race-AI"
git config user.email "arms-race-ai@users.noreply.github.com"

# Add files
git add .
git commit -m "Initial SEO blog - crypto exchange guides"

# Add remote with YOUR_TOKEN from Step 1
$token = "YOUR_TOKEN_HERE"  # Replace with actual token
git remote add origin "https://Arms-Race-AI:$token@github.com/Arms-Race-AI/Arms-Race-AI.github.io.git"

# Push
git push -u origin main

Step 3: Enable GitHub Pages (1 minute)

  1. Go to: https://github.com/Arms-Race-AI/Arms-Race-AI.github.io
  2. Click “Settings” tab
  3. Click “Pages” in left sidebar
  4. Under “Source”:
    • Branch: main
    • Folder: / (root)
  5. Click “Save”

Step 4: Wait & Visit (2-3 minutes)

Your blog will be live at: https://Arms-Race-AI.github.io

Check build status: https://github.com/Arms-Race-AI/Arms-Race-AI.github.io/actions


Alternative: Manual Upload

If git is problematic:

  1. Create repo: https://github.com/new
    • Name: Arms-Race-AI.github.io
    • Public
  2. Click “uploading an existing file”
  3. Drag entire d:\AICluster\blog folder
  4. Commit
  5. Enable Pages in Settings

What Gets Deployed

  • ✅ 2 comprehensive SEO guides (2,500+ words each)
  • ✅ Exchange comparison with tables
  • ✅ Beginner’s Bitcoin guide
  • ✅ Affiliate links integrated
  • ✅ Mobile-responsive design
  • ✅ SEO optimized

After Deployment

  1. Submit to Google: https://search.google.com/search-console
  2. Monitor traffic: Add Google Analytics (optional)
  3. Generate more content:
    python code/seo_blog_generator.py
    git add .
    git commit -m "New article"
    git push
    

Revenue Timeline

  • Week 1: Blog live, Google discovers
  • Week 2-4: First organic visitors (10-50/day)
  • Month 2-3: Rankings improve (100-500/day)
  • Month 6: Established traffic (500-2,000/day)
  • Revenue: $0 → $1,000+ by month 6

Your blog is ready. Just need the token to push!