diff --git a/.vitepress/config.ts b/.vitepress/config.ts index fa4be34..6386735 100644 --- a/.vitepress/config.ts +++ b/.vitepress/config.ts @@ -24,6 +24,8 @@ export default defineConfig({ title: "LonaDB", description: "JSON based Database written in JavaScript", themeConfig: { + logo: 'https://raw.githubusercontent.com/LonaDB/Website/main/.vitepress/logo_lonadb.png', + search: { provider: 'local' }, diff --git a/.vitepress/logo_lonadb.png b/.vitepress/logo_lonadb.png new file mode 100644 index 0000000..9a56089 Binary files /dev/null and b/.vitepress/logo_lonadb.png differ 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 +```