Skip to main content

Docusaurus para iDempiere

Β· One min read
Luis Amesty Linares
IT Consultant, Developer and Implementer

Create:

πŸ“˜ End-user guides

πŸ”§ Technical manual for developers

🧩 Plugin or customization documentation

🌐 Multilanguage website

πŸ“¦ Easy publishing to GitHub Pages or your web server (like amesty.es)

πŸ› οΈ How to start a doc for iDempiere with Docusaurus?

1. Create documentation project​

npx create-docusaurus@latest idempiere-docs classic
cd idempiere-docs

2. Typical structure​

idempiere-docs/
β”œβ”€β”€ docs/ <- Markdown files go here
β”‚ β”œβ”€β”€ intro.md
β”‚ β”œβ”€β”€ installing.md
β”‚ β”œβ”€β”€ configuring.md
β”‚ └── modules/
β”‚ β”œβ”€β”€ payroll.md
β”‚ └── accounting.md
β”œβ”€β”€ docusaurus.config.js <- Website configuration
β”œβ”€β”€ sidebars.js <- Sidebar menu
└── static/ <- Images or static assets

3. Add an example document​

docs/intro.md:

# Welcome to the iDempiere documentation

iDempiere is a powerful and extensible open-source ERP.

## Content
- Installation
- Configuration
- Custom plugins

4. Run locally​

PORT=3001 npm run start