This repository contains the documentation for Plexe, which consists of:
- The open-source Python library (
pip install plexe
) - The proprietary Plexe Platform (
console.plexe.ai
/api.plexe.ai
)
The documentation is built using Mintlify, a modern documentation platform.
# Install Mintlify CLI globally
npm install -g mint
# Start the documentation site locally
mint dev
This will start a local development server, typically on port 3000.
mint.json
: Configuration file with navigation structure, colors, and metadataintroduction/
: Introductory content about Plexelibrary/
: Documentation for the open-source Python librarytutorials/
: Step-by-step guideshow-to/
: Task-oriented guidesexplanation/
: Concept explanationsreference/
: API reference
platform/
: Documentation for the Plexe Platform- Similar structure to the library section
api-reference/
: API documentation including endpoints
Content is written in MDX (Markdown with JSX support). Files follow this structure:
---
title: "Page Title"
description: "Brief description of the page"
---
Content in Markdown format with optional JSX components...
Mintlify handles deployment automatically when changes are pushed to the main branch. No additional build commands are required.
- Create a new branch for your changes
- Edit existing MDX files or add new ones
- Update
mint.json
if adding new pages to the navigation - Test locally with
mint dev
- Submit a pull request to the main branch