You can find the online version of the Bagisto documentation at https://devdocs.bagisto.com.
We welcome contributions to improve the Bagisto documentation! Follow these steps to get started:
- Fork the repository - Click the "Fork" button on GitHub
- Clone your fork - Download your forked repository locally
- Install dependencies - Follow the Installation section below
- Create a branch - Make your changes in a feature branch
Before submitting your pull request, please ensure:
- Check for existing content - Verify the topic isn't already documented to avoid duplication
- Follow markdown standards - Use proper indentation and formatting (consider installing a markdown linter)
- Use kebab-case filenames - Name files using lowercase with hyphens (e.g.,
create-custom-theme.md
) - VitePress standards - Use VitePress containers (
::: info
,::: tip
,::: warning
) for better presentation - Code examples - Include practical, working code examples when applicable
- Clear structure - Use proper headings, lists, and sections for readability
- Write clear, concise documentation with practical examples
- Include step-by-step instructions for complex procedures
- Use proper grammar and professional tone
- Test code examples to ensure they work correctly
- Add relevant cross-references to related documentation
- Node.js (version 16 or higher)
- npm or yarn package manager
-
Install dependencies
npm install
-
Start development server
npm run docs:dev
-
Access the documentation
Open your browser and navigate to http://localhost:5173
npm run docs:dev
- Start development server with hot reloadnpm run docs:build
- Build documentation for production