An open API service indexing awesome lists of open source software.

https://github.com/devlargs/pickup-booking


https://github.com/devlargs/pickup-booking

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# 🚀 Pickup Booking Example

> **Note:** This project is an **example** of using **Redux Toolkit** with **Next.js** and **TypeScript**, integrating APIs with **Next.js API routes** and **Mongoose**.

## 📌 Installation Guide

### Clone the Repository

```bash
git clone https://github.com/devlargs/pickup-booking.git
cd pickup-booking
```

### Install Dependencies

Ensure you have [Node.js](https://nodejs.org/) installed, then run:

```bash
npm install
```

_Or with Yarn:_

```bash
yarn install
```

### Set Up Environment Variables

Create a `.env.local` file in the root directory and configure your environment variables:

```
MONGODB_URI=your_mongodb_connection_string
```

Replace `your_mongodb_connection_string` with your actual MongoDB connection string.

### Run the Application

Start the development server:

```bash
npm run dev
```

_Or with Yarn:_

```bash
yarn dev
```

Visit [http://localhost:6969](http://localhost:6969) to access the application. 🚀