Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/mujtabamohamed/shopease


https://github.com/mujtabamohamed/shopease

Last synced: about 6 hours ago
JSON representation

Awesome Lists containing this project

README

        

# ShopEase

## Demo

https://shopease-online.onrender.com/

## Tech Stack

- **Frontend**: React, TailwindCSS
- **Backend**: Node.js, Express.js
- **Database**: PostgreSQL

## Installation

**Clone the repository**
```bash
https://github.com/mujtabamohamed/ShopEase.git
cd ShopEase
```

**Install dependencies**
- **For the server:**
```bash
cd server
npm install

```
- **For the client:**
```bash
cd client
npm install
```

## Set up environment variables:

- **Create a .env file in the server directory and add your configuration.**
```bash
REACT_APP_API_URL=
```

- **Create a .env file in the client directory and add your configuration.**
```bash
PORT=
JWT_SECRET_KEY=
PG_USER=
PG_HOST=
PG_DATABASE=
PG_PASSWORD=

```

## Run the application

- **Start the server:**
```bash
cd server
npm start
```

- **Start the client:**
```bash
cd client
npm start
```