https://github.com/codeboxrcodehub/comforterpdocs
Docs for Comfort ERP Modules
https://github.com/codeboxrcodehub/comforterpdocs
Last synced: 5 months ago
JSON representation
Docs for Comfort ERP Modules
- Host: GitHub
- URL: https://github.com/codeboxrcodehub/comforterpdocs
- Owner: codeboxrcodehub
- License: mit
- Created: 2024-12-05T12:03:21.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-03-03T02:25:01.000Z (11 months ago)
- Last Synced: 2025-03-03T03:26:49.617Z (11 months ago)
- Language: JavaScript
- Homepage: https://docs.comforterp.com/
- Size: 242 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Comfort ERP
A docs template built using VitePress
This repository serves as a resource for the tutorial, How to Build a Modern Documentation Site with VitePress posted on freeCodeCamp
## Run project locally
Use this command below to boot this project locally.
```bash
git clone https://github.com/codeboxrcodehub/comforterpdocs.git
cd Comfort ERP
npm install
npm run docs:dev
```
Visit [https://localhost:5173](https://localhost:5173) to see your site
## Build
You may run this command to build the docs
```bash
npm run docs:build
```
## Folder Structure
```
docs/
├── .vitepress/
│ ├── config.js
│ └── theme/
│ ├── index.js
│ └── custom.css
├── public/
│ ├── logo.png
│ └── logo-big.svg
├── about.md
├── configs.md
├── contact.md
├── get-started.md
├── guide.md
├── index.md
├── package.json
└── README.md
```