> ## 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.

# Neon

To be able to develop on the `space` [tagged](https://nx.dev/core-features/enforce-project-boundaries#tags) **Nx** projects, you'll first need a database to use with [Prisma](/development/prisma).<br />
We'll be using [Neon branching](https://neon.tech/blog/frictionless-development-experience-with-neon-branching) to setup a clone of the production database that can be used for development.

### Prerequisites

* [Discord](/development/discord)
* [Git](/development/git)

### Create a Neon branch

Assuming you have the [clubhub](https://github.com/clubhub-space/clubhub) Git repository open.

Read the technical documentation [here](/applications/trigger-neon-branch).

1. Create a new Git branch

```bash theme={null}
$ git checkout -b <name>
```

2. Push the Git branch

```bash theme={null}
$ git push --set-upstream origin <name>
```

3. Read the message posted in the `#neon` **Discord** channel that contains the next step. It'll look like the following below

<Frame>
  <img src="https://mintcdn.com/clubhub/F9m6JAuCWx1Rz6Ub/images/development/getting-started/Screenshot%202023-04-24%20at%2014.43.41.png?fit=max&auto=format&n=F9m6JAuCWx1Rz6Ub&q=85&s=10aeba054f195be7fe96b0abcd7b06a5" width="513" height="345" data-path="images/development/getting-started/Screenshot 2023-04-24 at 14.43.41.png" />
</Frame>

4. You have now setup a [Neon branch](https://neon.tech/docs/introduction/branching) for local development 🎉.
