Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mujtabamohamed/shopease
https://github.com/mujtabamohamed/shopease
Last synced: about 6 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/mujtabamohamed/shopease
- Owner: mujtabamohamed
- Created: 2024-09-12T19:21:42.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-09-17T11:41:33.000Z (about 2 months ago)
- Last Synced: 2024-09-18T02:35:23.143Z (about 2 months ago)
- Language: JavaScript
- Size: 454 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```