A beautiful, comprehensive installation guide for OpenClaw with Ollama and WhatsApp integration.
Recommended: openclaw-installation-guide
Alternative options:
openclaw-docsopenclaw-guideopenclaw-install-guide
- Go to GitHub and sign in
- Click the "+" icon in the top right → "New repository"
- Name it:
openclaw-installation-guide(or your preferred name) - Make it Public (required for free GitHub Pages)
- Don't initialize with README, .gitignore, or license (we already have files)
- Click "Create repository"
- After creating the repository, click "uploading an existing file"
- Drag and drop
index.htmlinto the upload area - Scroll down and click "Commit changes"
# Navigate to your project directory
cd /media/windows/claw
# Initialize git repository
git init
# Add all files
git add .
# Commit files
git commit -m "Initial commit: OpenClaw installation guide"
# Add your GitHub repository as remote (replace YOUR_USERNAME)
git remote add origin https://github.com/YOUR_USERNAME/openclaw-installation-guide.git
# Push to GitHub
git branch -M main
git push -u origin main- Go to your repository on GitHub
- Click "Settings" tab (top menu)
- Scroll down to "Pages" in the left sidebar
- Under "Source", select:
- Branch:
main(ormaster) - Folder:
/ (root)
- Branch:
- Click "Save"
GitHub will provide your site URL:
- Format:
https://YOUR_USERNAME.github.io/openclaw-installation-guide/ - It may take 1-2 minutes to become available after enabling Pages
If you want to use a custom domain:
- In the Pages settings, add your custom domain
- Update your domain's DNS records as instructed by GitHub
- GitHub will provide SSL certificate automatically
Whenever you make changes:
# Make your changes to index.html
git add index.html
git commit -m "Update installation guide"
git pushGitHub Pages will automatically rebuild your site (usually within 1-2 minutes).
openclaw-installation-guide/
├── index.html # Main HTML file (your guide)
└── README.md # This file
That's it! Your site is now live on GitHub Pages. 🚀