CouponJars is a platform that allows users to submit and share their finds about coupon and deals to other users.
View Demo »
Frontend client Source Code
·
Backend server Source Code
Table of Contents
CouponJars is a platform that allows users to submit and share their finds about coupon and deals to other users.
- User Signup
- User Login
- create post
- "Like" user's post
- Comment on user's post
- Change user password
- Change user display name/alias
- Coupon details page
-
Clone the repo
git clone https://github.com/ChiShingLi/CouponJars.git
-
Install NPM packages
npm install
-
Enter your API secrets in the
.env
file- FrontEnd Client:
REACT_APP_DATABASE_URL = "ENTER YOUR MONGODB DATABASE URL";
- Backend Client:
PORT = "ENTER YOUR MONGODB DATABASE PORT NUMBER"; DB_PATH = "ENTER YOUR MONGODB DATABASE CONNECTION STRING"; JWT_SECRET = "ENTER YOUR JSON WEB TOKEN SECRET KEY";