Documentation site for the Mobile UI SDKs for Asgardeo. This site was developed using VitePress which is a Vue-powered static site generator and a spiritual successor to VuePress, built on top of Vite.
Setup development environment for the Documentation Site for Mobile UI SDKs for Asgardeo.
- Node.js version 18 or higher.
- Text Editor with Markdown syntax support.
- VSCode is recommended.
.
├─ website
│ ├─ .vitepress
│ │ ├─ theme
│ │ │ └─ index.ts
│ │ │ └─ style.css
│ │ └─ config.mts
│ ├─ android
│ │ └─ <relevant .md files for Asgardeo-Android SDK>
│ ├─ public
│ │ └─ <image assets>
│ ├─ index.md
└─ package.json
This file contains the configuration for the VitePress theme used in the documentation site.
This file contains the CSS styles for the documentation site. For more information on how to customize the theme, see the VitePress documentation.
This file contains the main structure of the documentation site. For more information on how to configure the site, see the VitePress documentation.
This directory contains the relevant .md files for the Asgardeo-Android SDK.
This directory contains the image assets used in the documentation site.
This file contains the content for the home page of the documentation site. For more information on how to customize the home page, see the VitePress documentation.
- Clone the repository.
- Navigate to the
docs
directory. - Run the following command to install the dependencies:
npm install
- Run the following command to start the development server:
npm run docs:dev
- Open the following URL in your browser:
http://localhost:5173/mobile-ui-sdks/
- For more information on how to improve the documentation, see the VitePress documentation.