/UnityProject

Primary LanguageJavaScript

Node.js Express MongoDB Starter

This is a simple Node.js, Express, and MongoDB starter template for building web applications with user authentication, seller and buyer functionality, and order management.

Table of Contents

Prerequisites

Make sure you have the following installed on your machine:

Getting Started

1. Clone the Repository

git clone <repository-url>
cd <project-folder>

## 2. Install Dependencies

```bash
npm install

3. Set up MongoDB

  • Ensure MongoDB is running on your machine.
  • Create a new database for the project.

4. Configure Environment Variables

  • Create a .env file in the project root.

    Add the following variables:

MONGOURI=<your-mongodb-connection-string>
PORT=<Your Port Number>

5. Run the Project

npm start