Blog Deployment Instructions
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)
- Go to: https://github.com/settings/tokens
- Click “Generate new token” → “Generate new token (classic)”
- Settings:
- Note: “Blog deployment”
- Expiration: 90 days (or No expiration)
- Scopes: Check
repo(full control)
- Click “Generate token”
- 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)
- Go to: https://github.com/Arms-Race-AI/Arms-Race-AI.github.io
- Click “Settings” tab
- Click “Pages” in left sidebar
- Under “Source”:
- Branch:
main - Folder:
/ (root)
- Branch:
- 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:
- Create repo: https://github.com/new
- Name:
Arms-Race-AI.github.io - Public
- Name:
- Click “uploading an existing file”
- Drag entire
d:\AICluster\blogfolder - Commit
- 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
- Submit to Google: https://search.google.com/search-console
- Monitor traffic: Add Google Analytics (optional)
- 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!