Docs

Everything you need to go from an empty account to a running web presence: create a site, ship content three ways, and operate it with previews, staging and one-click rollback.

Quick start

  1. Create an account — every available plan starts with a 14-day free trial (card required, not charged until the trial ends).
  2. Create a site from your dashboard: pick an address (yourname.infoemu.com) and a plan, then complete checkout.
  3. We provision your site and hand you the admin credentials — shown once, so store them safely.
  4. Ship your content (three ways, below), check the preview URL, and promote it live.
  5. 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

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.