Skip to main content

Documentation operations

The docs repository is the source of truth for Moveat documentation. Mintlify renders and hosts the site, but the repository owns the content.

Current setup

SettingValue
HostingMintlify.
Domaindocs.mov-eat.app.
Source repomoveatApp/docs.
Branchmain.
Config filedocs.json at repo root.
LanguagesEnglish and Spanish.

Branding

The header logo is configured in docs.json through the logo field. Mintlify supports separate light and dark logo files, but Moveat currently uses the same logo.png for both modes. If the logo does not render correctly in one color mode, add separate assets:
/logo-light.png
/logo-dark.png
Then configure:
"logo": {
  "light": "/logo-light.png",
  "dark": "/logo-dark.png",
  "href": "/"
}

Bilingual documentation

Moveat documentation is available in English and Spanish. The English version lives at the repository root and the Spanish version lives under es/ with the same structure. When content changes:
  1. Update the English source page.
  2. Update the matching Spanish page.
  3. Validate docs.json navigation.
  4. Push and verify the Mintlify deployment.
This keeps both language versions aligned while preserving one repository as the source of truth.

Content ownership

Content typeOwner
Product logicProduct/Founder plus engineering review.
Platform technical docsBackend engineering.
Agent technical docsAgent engineering.
Deployment and infraOperations/backend engineering.
Testing statusEngineering, updated after meaningful coverage changes.
API specsGenerated from Platform Swagger/OpenAPI when possible.

Update workflow

  1. Update MDX files in the docs repository.
  2. Validate navigation references in docs.json.
  3. Commit and push to main or open a PR.
  4. Wait for Mintlify deploy.
  5. Verify the live page at docs.mov-eat.app.