This repository contains the Mintlify source content for the Admin9 documentation site.
This repository holds:
- product documentation for
admin9 - developer documentation
- admin and operations documentation
- release and deployment guidance
- open source portfolio pages
- Mintlify configuration for the public docs site
It is not the application repository.
docs.json- Mintlify configurationindex.md- docs homepagegetting-started/- installation and local developmentarchitecture/- system and codebase structureguides/- developer-focused feature and integration guidesadmin-guide/- admin and operations documentationreference/- commands and quality referencesdeployment/- release and deployment checklistsopen-source/- public repository pages
Preview the site locally:
mintlify devBroken-link validation:
mintlify broken-linksIf Mintlify CLI is not installed locally:
npm install -g mintlifyIf you prefer not to install it globally:
npx mintlify dev
npx mintlify broken-linksThis repository includes a GitHub Actions workflow that runs Mintlify broken-link checks on:
- pushes to
main - pull requests
It also runs markdown link validation across the repository so broken external links and moved internal references are caught before merge.
The source of truth for product behavior remains the application repository:
admin9
When updating docs, prefer to verify details against:
composer.jsonpackage.json.env.exampleroutes/*.phpapp/Filament/*app/Services/*
Recommended verification order for fact-sensitive pages:
- confirm package and framework versions in
composer.jsonandpackage.json - confirm user-facing paths in
routes/web.phpandroutes/api.php - confirm panel paths, navigation groups, and theme assets in
app/Providers/Filament/*PanelProvider.php - confirm documented environment variables in
.env.example - confirm service behavior in the relevant files under
app/Services/*
Pages most likely to drift and should be checked first:
getting-started/installation.mdgetting-started/local-development.mdreference/commands-and-endpoints.mdguides/authentication-and-identity.mdguides/payments-and-billing.mdadmin-guide/*pages that describe Filament settings or provider configuration
- Documentation content should track the current product repositories.
- When product behavior changes, update docs from the relevant codebase rather than from older marketing material or inherited docs.
- Keep Mintlify navigation in
docs.jsonaligned with the actual file structure. - Keep
index.md, section landing pages, andREADME.mdaligned with the actual repo structure.