This is the official documentation for the HMPL app project, built using VuePress 2.
Make sure you have Node.js v16+ installed.
-
Clone the repository:
git clone https://github.com/hmpl-language/hmpl.git cd hmpl-docs
-
Install dependencies:
npm install
Script | Description |
---|---|
npm run start |
Starts the local development server |
npm run build |
Builds the static site for production |
npm run clean-dev |
Clears cache and starts the dev server cleanly |
npm run update-package |
Updates VuePress-related dependencies via vp-update |
npm run start
The site will be available at: http://localhost:3000
npm run build
The static site will be generated in the docs/.vuepress/dist/
folder.
hmpl-docs/
├── docs/ # All markdown documentation files
│ ├── .vuepress/ # VuePress config and customization
│ │ ├── config.js # Main VuePress config
│ │ └── ... # Plugins, theme options, styles, etc.
│ └── index.md # Homepage of the docs
├── package.json
└── README.md # This file
- Fork the repository
- Create a new branch:
git checkout -b feature/your-feature-name
- Make your changes
- Commit your changes:
git commit -m 'Add: New section'
- Push to your fork:
git push origin feature/your-feature-name
- Open a Pull Request