Docusaurus para iDempiere
Β· One min read
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
