From d04d82ab3320664ac06d875e53267a5e7c1f56eb Mon Sep 17 00:00:00 2001 From: Collin Date: Tue, 13 Jun 2023 21:51:15 +0200 Subject: [PATCH] Update getting-started.md --- guide/getting-started.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/guide/getting-started.md b/guide/getting-started.md index e69de29..39d9f95 100644 --- a/guide/getting-started.md +++ b/guide/getting-started.md @@ -0,0 +1,28 @@ +## Prerequisites + +To run the LonaDB server, make sure you have the following software installed: + +- Node.js (version 12 or above) +- npm (Node Package Manager) + +## Installation + +To install the LonaDB server, follow these steps: + +1. Clone the repository to your local machine: + +```bash +git clone https://github.com/LonaDB/Server.git +``` + +2. Navigate to the project directory: + +```bash +cd Server +``` + +3. Install the dependencies: + +```bash +npm install +```