Skip to main content

Deploy your site

Go to mintlify.com/start to create your documentation site. You’ll connect your GitHub account and create a repository for your docs. Your site deploys to https://<your-project-name>.mintlify.app. Find your URL on the dashboard.

Make your first change

1

Install the CLI

npm i -g mint
2

Edit a page

Open index.mdx and update the description:
---
title: "Introduction"
description: "Your custom description here"
---
3

Preview locally

mint dev
View at http://localhost:3000.
4

Push changes

git add .
git commit -m "Update description"
git push

Next steps