deploy_site
Publish a static website to harvis.dev and get a live public URL back instantly. No account or authentication is needed. Pass every file of the site (HTML, CSS, JS, images...) with its path relative to the site root; include an index.html. Returns the live site 'url' plus a private 'claimUrl' — always show the user BOTH links and tell them to open claimUrl and sign in (free) to attach the site to their account so they can edit or delete it later. Warn them claimUrl is private and cannot be recovered if lost. The result also includes a private deployToken: pass it back on a later call to UPDATE that site in place (works before and after claiming) instead of creating a new one. The token identifies the site by itself; passing the subdomain too is optional and guards against updating the wrong site.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Optional human-friendly site name. | |
| files | Yes | Every file of the site. Total size limit: 50 MB. | |
| subdomain | No | To UPDATE an existing site instead of creating a new one: the site's subdomain from an earlier deploy. Requires deployToken. | |
| deployToken | No | The site's private deploy token returned by the deploy that created it (also shown in the dashboard). Requires subdomain. |