Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/evavic44/adocs
πΈDocs template built with VitePress βThe vite and vue powered static site generator
https://github.com/evavic44/adocs
article documentation markdown static-site-generator vite vitejs vitepress vitepress-doc vue vuejs
Last synced: 12 days ago
JSON representation
πΈDocs template built with VitePress βThe vite and vue powered static site generator
- Host: GitHub
- URL: https://github.com/evavic44/adocs
- Owner: Evavic44
- Created: 2022-11-05T10:57:12.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-11T17:12:08.000Z (8 months ago)
- Last Synced: 2024-10-04T11:58:23.691Z (about 1 month ago)
- Topics: article, documentation, markdown, static-site-generator, vite, vitejs, vitepress, vitepress-doc, vue, vuejs
- Homepage: https://adocs.vercel.app
- Size: 71.3 KB
- Stars: 84
- Watchers: 4
- Forks: 30
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Adocs
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/Evavic44/adocs.gitcd adocs
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.svg
β βββ logo-big.svg
βββ about.md
βββ configs.md
βββ contact.md
βββ get-started.md
βββ guide.md
βββ index.md
βββ package.json
βββ README.md
```