Docs
Quick start
- Create an account — every available plan starts with a 14-day free trial (card required, not charged until the trial ends).
- Create a site from your dashboard: pick an address (yourname.infoemu.com) and a plan, then complete checkout.
- We provision your site and hand you the admin credentials — shown once, so store them safely.
- Ship your content (three ways, below), check the preview URL, and promote it live.
- On plans with custom domains, point a CNAME at our edge and we handle TLS automatically.
Three ways to ship content
1. Upload a built site. Build with any static generator, tar the output, and POST it with your site's deploy token. Every upload becomes an immutable release:
tar -czf site.tar.gz -C dist .
curl -X POST "https://portal.infoemu.com/api/deploy/$INSTANCE_ID" \
-H "Authorization: Bearer $DEPLOY_TOKEN" \
-F "archive=@site.tar.gz"2. Send raw Markdown. POST a tar of your content to /api/deploy/{id}/source and we build it in an isolated sandbox with our pinned docs generator. Build failures return logs through the API and never touch your live site.
3. Connect GitHub. Configure your repo and branch once; every push builds automatically. Pushes to other branches build as preview-only releases you can review before promoting.
Previews, stage, production
Every release gets its own preview URL (r-<release>--yoursite.infoemu.com) the moment it's deployed. A named stage alias (stage--yoursite.infoemu.com) points wherever you choose. Production only changes when you promote — an atomic pointer swap — and rollback restores the previous release with one call. The full flow is in the API reference.
Go deeper
- Full documentation & knowledge base — the complete product docs at docs.infoemu.com: step-by-step tutorials, how-to guides, reference and a searchable help center.
- API reference — deploy, forum, content and help-desk APIs with auth details.
- Using InfoEmu with AI agents — the paste-ready agent brief and safety model, plus llms.txt for machine-readable docs.
- Help center — short answers on billing, domains, deploys and support.
- Comparison — InfoEmu vs. running a stack of separate tools.
Looking for the full manual? docs.infoemu.com hosts the complete product documentation and knowledge base — it runs on the platform's own docs template. Stuck on anything? hi@infoemu.com reaches a human.