Skip to content

Latest commit

 

History

History
71 lines (43 loc) · 1.48 KB

README.md

File metadata and controls

71 lines (43 loc) · 1.48 KB

Datamonkey Docs

Description

Getting Started

Prerequisites

Make sure you have Node.js installed on your machine.

Installation

To get started, clone this repository and navigate to the project directory:

git clone <repository-url>
cd datamonkey-docs

Install the necessary dependencies:

npm install

Development

Running the Development Server

To start a local development server, use the following command:

npm run docs:dev

Your documentation site will be available at http://localhost:3000. Any changes you make to the documentation files will automatically reload in the browser.

Building for Production

To build the documentation for production, run:

npm run docs:build

The output will be generated in the .vitepress/dist directory.

Previewing the Build

To preview the production build locally, you can use:

npm run docs:preview

This will start a local server to display the built documentation.

Scripts

  • npm run docs:dev: Starts the VitePress development server.
  • npm run docs:build: Builds the documentation for production.
  • npm run docs:preview: Previews the built documentation.

Contributing

Contributions are welcome! Please feel free to submit a pull request or report issues.

Acknowledgments

  • VitePress for providing the foundation for documentation.
  • KaTeX for beautiful math typesetting.