Vercel Deployment¶
Deploy the documentation site to Vercel.
One-Click Deploy¶
Manual Deployment¶
1. Install Vercel CLI¶
2. Deploy¶
3. Production Deploy¶
Configuration¶
The repository includes vercel.json for automatic configuration:
JSON
{
"buildCommand": "pip install mkdocs-material ... && mkdocs build",
"outputDirectory": "site",
"framework": null
}
Environment Variables¶
Set in Vercel dashboard:
| Variable | Description |
|---|---|
SITE_URL | Your custom domain URL |
Custom Domain¶
- Go to Vercel Dashboard → Project → Settings → Domains
- Add your custom domain
- Configure DNS as instructed
Automatic Deployments¶
Vercel automatically deploys:
- Production: On push to
mainbranch - Preview: On pull requests
No GitHub Actions needed - Vercel handles CI/CD.