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

# Getting Started

> Getting started with development

### Prerequisites

* [Git](https://github.com/git-guides/install-git)
* [VS Code](https://code.visualstudio.com/), [IntellIJ IDEA](https://www.jetbrains.com/webstorm/) or [WebStorm](https://www.jetbrains.com/webstorm/)
* [Volta](https://volta.sh/)
* [Discord](/stack/discord)
* [Neon](/stack/neon)

[Clone](https://github.com/git-guides/git-clone) the [clubhub-space/clubhub](https://github.com/clubhub-space/clubhub) GitHub repository

## Installation

<CodeGroup>
  ```bash node theme={null}
  $ volta install node
  ```

  ```bash pnpm theme={null}
  $ volta install pnpm
  ```
</CodeGroup>

### Dependencies

Install [Node](https://nodejs.org) dependencies using [pnpm](https://pnpm.io/).

```bash theme={null}
$ pnpm install
```

## Developing the Space application locally

1. Copy `.env.example` to `.env`.

2. [Follow the steps in the Neon development guide](/development/neon#create-a-neon-branch).

3. [Read the Prisma development guide](/development/prisma)

4. [Read the Remix development guide](/development/remix)

5. Run the following commands in separate terminals.<br />
   They will start the dev servers for developing on the **space** application and the associated database.

<CodeGroup>
  ```bash space-db theme={null}
  $ nx dev space-db
  ```

  ```bash space theme={null}
  $ nx serve space
  ```
</CodeGroup>
