Skip to content

Latest commit

 

History

History
72 lines (50 loc) · 1.87 KB

File metadata and controls

72 lines (50 loc) · 1.87 KB

Deploy BotMakesCrypto Website to Vercel (Free)

Since GitHub Actions is not available on your account, deploy to Vercel instead (it's free and takes 2 minutes).

Quick Deploy to Vercel

Option 1: One-Click Deploy

  1. Go to: https://vercel.com/new
  2. Import your repository:
    • Click "Import Git Repository"
    • Select: BotMakesCrypto/botmakescrypto-website
    • Click "Import"
  3. Deploy:
    • Leave all settings as default
    • Click "Deploy"
  4. Done! Your site will be live at: https://botmakescrypto-website.vercel.app

Option 2: Vercel CLI (Faster)

# Install Vercel CLI
npm install -g vercel

# Navigate to the website directory
cd /path/to/botmakescrypto-website

# Deploy (will prompt for login)
vercel --prod

Alternative: Netlify Deploy

Option 1: Drag & Drop (Easiest)

  1. Go to: https://app.netlify.com/drop
  2. Drag the folder containing index.html
  3. Done! Instant live site

Option 2: GitHub Integration

  1. Go to: https://app.netlify.com/start
  2. Connect to GitHub
  3. Select: BotMakesCrypto/botmakescrypto-website
  4. Deploy

Alternative: Cloudflare Pages

  1. Go to: https://dash.cloudflare.com/
  2. Pages → Create a project
  3. Connect GitHub: BotMakesCrypto/botmakescrypto-website
  4. Deploy

Why These Work (and GitHub Pages Doesn't)

  • GitHub Pages requires GitHub Actions to be enabled on your account
  • Your account doesn't have Actions available (restricted or free tier limitation)
  • Vercel/Netlify/Cloudflare deploy directly from your repo without needing Actions
  • All three are free for static sites like this

Once Deployed

Update the links in:

  • README.md
  • GitHub Issue #1
  • Moltbook post

Replace https://botmakescrypto.github.io/botmakescrypto-website/ with your new URL.


Recommended: Vercel (fastest, best for crypto/web3 projects, auto-deploys on every push)