๐Ÿ“‹ Step-by-Step Deployment Guide

Complete guide to deploy ConverterJunction live โ€” Cloudflare Pages (Free) or Hostinger

โ˜๏ธ

Deploy to Cloudflare Pages โ€” 100% FREE

Best option! Free hosting, free SSL, global CDN, unlimited bandwidth

$0/month
Cost
Free SSL
HTTPS
Global CDN
Fast worldwide
1

Create Free Cloudflare Account

  1. Go to cloudflare.com โ†’ Click Sign Up
  2. Enter email and password โ†’ Verify email
  3. You're on the Free plan (no credit card needed)
2

Install Required Software on Your Computer

You need Node.js and npm installed.

# Check if already installed:
node --version   # Should show v18+ or v20+
npm --version   # Should show 9+

If not installed โ†’ Download from nodejs.org โ†’ Download LTS version

3

Download the Project Files

You need the project files on your computer.

Option A (If you have GitHub):

git clone https://github.com/YOUR-USERNAME/converterjunction.git
cd converterjunction

Option B (Download ZIP):

Download project ZIP โ†’ Extract โ†’ Open folder in terminal

4

Install Dependencies & Build

Open terminal in the project folder and run:

npm install     # Install packages (~2 min)
npm run build   # Build the site

โœ… You'll see a dist/ folder created โ€” this is your website!

5

Deploy to Cloudflare Pages

# Login to Cloudflare:
npx wrangler login
# Create the project (first time only):
npx wrangler pages project create converterjunction --production-branch main
# Deploy:
npx wrangler pages deploy dist --project-name converterjunction

๐ŸŽ‰ Your site will be live at: https://converterjunction.pages.dev

6

Connect Your Custom Domain

  1. Go to Cloudflare Dashboard โ†’ Pages โ†’ converterjunction
  2. Click Custom domains โ†’ Add domain โ†’ Enter converterjunction.com
  3. Point your domain DNS to Cloudflare nameservers (from your domain registrar)
  4. Free SSL automatically activates within 5 minutes โœ…
โœ… Site live at https://converterjunction.com โ€” Free forever!

๐Ÿ”„ To Update the Site Later:

npm run build
npx wrangler pages deploy dist --project-name converterjunction

๐Ÿš€ After Going Live โ€” Checklist

๐Ÿ“‹ SEO Setup

  • โœ… Submit sitemap to Google Search Console
  • โœ… Add site to Google Search Console
  • โœ… Submit to Bing Webmaster Tools
  • โœ… Set up Google Analytics 4
  • โœ… Create social media profiles

๐Ÿ’ฐ Monetization

  • ๐Ÿ“Œ Apply for Google AdSense (need 30+ days + 100+ clicks)
  • ๐Ÿ“Œ Replace ad placeholders with real AdSense code
  • ๐Ÿ“Œ Add Media.net as alternative ad network
  • ๐Ÿ“Œ Track revenue in Google Analytics

๐Ÿ”ง Technical

  • ๐Ÿ”น Verify robots.txt at /robots.txt
  • ๐Ÿ”น Check sitemap at /sitemap.xml
  • ๐Ÿ”น Test site on mobile (Chrome DevTools)
  • ๐Ÿ”น Run PageSpeed Insights test

๐Ÿ“Š URLs to Submit

  • https://converterjunction.com/sitemap.xml
  • https://converterjunction.com/sitemap-index.xml
  • Submit both to Google Search Console

โšก Super Quick Summary

Step 1

Install Node.js from nodejs.org (if not installed)

Step 2

Run: npm install && npm run build

Step 3

Run: npx wrangler pages deploy dist --project-name converterjunction

๐ŸŽ‰ That's it! Your site is live in under 5 minutes using Cloudflare Pages (FREE)