> ## Documentation Index
> Fetch the complete documentation index at: https://docs.getcore.me/llms.txt
> Use this file to discover all available pages before exploring further.

# Local setup

## Getting Started

### Prerequisites

* [Docker](https://docs.docker.com/get-docker/) and [Docker Compose](https://docs.docker.com/compose/install/)
* Node.js 18+ & pnpm

### Setup

1. Fork this repository

2. Clone your fork locally and install dependencies
   ```bash theme={null}
   git clone https://github.com/RedPlanetHQ/core.git
   cd core
   pnpm install
   ```

3. Copy `.env.example` to `.env` and add your **OPENAI\_API\_KEY**.

4. Start docker services
   ```bash theme={null}
   cd hosting/docker
   docker-compose up -d postgres redis neo4j
   cd ../..
   ```

5. Start the server
   ```bash theme={null}
   pnpm dev
   ```

The application will be running at `http//:localhost:3033`
