This commit is contained in:
Keksi 2023-06-25 11:56:10 +02:00
commit 925fc3d9ce
3 changed files with 30 additions and 0 deletions

View File

@ -24,6 +24,8 @@ export default defineConfig({
title: "LonaDB", title: "LonaDB",
description: "JSON based Database written in JavaScript", description: "JSON based Database written in JavaScript",
themeConfig: { themeConfig: {
logo: 'https://raw.githubusercontent.com/LonaDB/Website/main/.vitepress/logo_lonadb.png',
search: { search: {
provider: 'local' provider: 'local'
}, },

BIN
.vitepress/logo_lonadb.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -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
```