Quickstart
Create, customize, and publish your first Documentation.AI site in minutes.
Overview
When you create a new documentation, Documentation.AI automatically generates a personalized, branded documentation site. This includes:
-
A live URL
-
Starter pages and navigation
-
Your brand colors and logo fetched from your website (if available and if you choose personalization)
-
AI‑powered search and assistance
This quickstart walks you through accessing your site, choosing an editing workflow, making your first update, and publishing changes.
1. Access your live documentation site
After creating a project, your site is deployed automatically. You can find your live URL in the project dashboard under Site URL.
Example format:
https://your-project.documentationai.io
Use this URL to preview changes and share drafts with teammates.
2. Choose your editing workflow
Documentation.AI supports two workflows: Web Editor and Code Editor. Both will always be in sync. You can choose which ever your are comfortable.
Use the in-browser Web Editor to create, edit, organize, and publish content visually. This is the fastest way to publish without using version control.
Use Git-backed editing with GitHub or GitLab. Edit locally in your preferred IDE and use pull requests for review. Ideal for engineering teams and version-controlled workflows.
3. Make your first edit
You will now update the auto-generated Getting Started page. Follow the steps for the workflow you selected.
Web Editor workflow
Open the Getting Started page from the sidebar in the dashboard.
-
Click Edit Page.
-
Place your cursor anywhere in the page.
-
Type to / see the list of components available.
-
Start writing and click Publish to push the change live.
- You can also use the built-in AI Documentation Agent to generate or refine content directly in the editor.
For more detail, see the Web Editor Overview.
Code Editor workflow
-
Set up Git integration in Settings → Integrations.
-
Clone your repository:
git clone https://github.com/your-org/your-docs.git -
Edit the
getting-startedpages in your editor. -
Add a component such as a callout:
<Callout kind="info"> Remember to keep your API key secret. </Callout> -
Commit and push:
git add . git commit -m "First content update" git push origin main
Your updates deploy automatically.
You can optionally use AI-powered IDE assistants, such as Cursor or similar tools, to help edit MDX content locally.
Learn more in the Code Editor Overview.
4. Publish changes
Publishing behaves differently depending on your workflow.
Publish with Web Editor
Click Publish in the top-right corner of the Web Editor. Changes deploy immediately.
Publish with Code Editor
Commits to your main branch trigger automatic deployment.
5. Optional: connect a custom domain
If you want branded docs like docs.yourcompany.com, configure a custom domain.
6. Enhance your site
After publishing your first update, explore these features to extend your documentation.
Last updated 1 day ago