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

# Installation

> Learn how to set up LaunchIt in your development environment

## Prerequisites

Before you begin, ensure you have the following installed on your system:

* Node.js (version 18.0.0 or higher)
* pnpm (version 8.0.0 or higher)
* Git

## Quick Start

1. Clone the repository:

```bash theme={null}
git clone git@github.com:lorenzpfei/launchit-template.git my-project
```

2. Navigate to the project directory:

```bash theme={null}
cd my-project
```

3. Install dependencies:

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

4. Copy the example environment file:

```bash theme={null}
cp .env.example .env
```

5. Start the development server:

```bash theme={null}
pnpm dev
```

Your application should now be running at `http://localhost:3000`.

## What's Next?

Learn how to configure your [Environment variables](/getting-started/environment).

## Troubleshooting

If you encounter any issues during installation:

1. Make sure you're using the correct Node.js version
2. Clear your pnpm cache: `pnpm store prune`
3. Delete the `node_modules` directory and run `pnpm install` again
