https://github.com/devlargs/pickup-booking
https://github.com/devlargs/pickup-booking
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/devlargs/pickup-booking
- Owner: devlargs
- Created: 2020-09-19T05:51:33.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-02-09T17:16:04.000Z (over 1 year ago)
- Last Synced: 2025-02-09T18:24:59.661Z (over 1 year ago)
- Language: CSS
- Homepage: https://pickup-booking.vercel.app
- Size: 1.81 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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. 🚀