You can find the online version of the UnoPim documentation at https://docs.unopim.com.
- v2.0 — Latest documentation covering AI Agent, Magic AI (Platforms, Prompts, System Prompts, Settings), Dashboard, Notifications, Webhooks, Swatch Attributes, Product Completeness, Translations, and all core PIM features.
- v1.0 — Legacy documentation covering core PIM functionality.
src/
├── 1.0/ # v1.0 documentation
├── 2.0/ # v2.0 documentation
│ ├── introduction/ # Introduction & feature overview
│ ├── releases/ # Key Features by Version (interactive)
│ ├── dashboard/ # Dashboard widgets & analytics
│ ├── products/ # Simple & Configurable products
│ ├── category/ # Categories
│ ├── categoryField/ # Category fields
│ ├── attribute/ # Attributes, families, groups, swatch types
│ ├── data-transfer/ # Import, Export, Job Tracker
│ ├── settings/ # Locales, Currencies, Channels, Users, Roles, Webhooks
│ ├── notifications/ # In-app & email notifications
│ ├── configuration/ # Integrations, Magic AI configuration
│ ├── magic/ # Magic AI content & image generation
│ └── ai-agent/ # AI Agent Chat, Approval Queue, Analytics
├── public/ # Static assets (images, logos)
└── index.md # Homepage
For contributing to the docs, you first need to set up the project:
- Fork the repository.
- Clone your fork.
- Follow the Install Dependencies section.
Make sure your PR follows these points:
- Before writing docs, check if the topic is already covered.
- Ensure proper markdown indentation. You can install a markdown linter to follow conventions.
- New filenames should be
kebab-case(e.g.,file-name.md). - Images go in
src/public/assets/{version}/images/{section}/.
npm installRun the docs locally:
npm run devOpen your browser and go to http://localhost:8080.
Build for production:
npm run buildPreview the production build:
npm run preview