Make sure you have Node.js installed on your machine.
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
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.
To build the documentation for production, run:
npm run docs:build
The output will be generated in the .vitepress/dist
directory.
To preview the production build locally, you can use:
npm run docs:preview
This will start a local server to display the built documentation.
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.
Contributions are welcome! Please feel free to submit a pull request or report issues.