Penify Documentation Site
Welcome to the Penify Documentation Site, powered by VitePress. This guide will help you on how to get started with vitepress, a vue powered static site generator.
Prerequisites
- Node.js (20.x)
- Yarn
- Basic knowledge of Vue.js and Markdown
Installation
- Clone the repository:
bash
$ git clone https://github.com/SingularityX-ai/Penify-usage-doc-site
$ cd Penify-usage-doc-site- Install Yarn Packages:
bash
$ yarn install- Run the development server:
bash
$ yarn docs:devThis will start local development server on port 3000. The site should now be running on http://localhost:3000/
Create your first page
Create a new Markdown file in the
docsdirectory.Add content (html or md syntax) to this markdown file.
Buidling for production
- To build site for production, run:
bash
yarn docs:buildThe build files will be available in the .vitepress/dist directory.
- To preview the production build, run:
bash
yarn docs:previewThis will serve the production build locally for testing