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

# Quickstart

> Follow these steps to get started with NextAPI.

## Setup your development

Clone the repository and install the dependencies.

```bash
git clone https://github.com/devkiran/NextAPI.git
```

```bash
npm install
```

Setup the environment variables.

```bash
cp .env.example .env
```

Migrate the database.

```bash
npx prisma db push
```

Start the development server.

```bash
npm run dev
```
