meshtastic/docs/about-documentation/serve-docs-locally.md
2022-02-08 06:33:51 -07:00

1.3 KiB

id title sidebar_label
serve-docs-locally Setting up Local Documentation Serve Docs Locally

:::note Some things won't display properly like logos or protobufs, this is not cause for concern. :::

Prerequisites

In order to set up your local environment, you will need to install:

Getting Started

Fork the Meshtastic Repository

Log into Github and create a fork of the meshtastic/Meshtastic repository.

Clone your Meshtastic Repository fork

:::note Replace username with your Github username. :::

git clone https://github.com/username/Meshtastic.git

Change directory to Local copy

cd ~/Meshtastic

Install Dependencies

yarn install

Run Development Server

yarn start

:::tip Before submitting a pull request, it's helpful to run the following command to ensure there are no broken links or errors:

yarn build

:::