SyedMuzamilM / freshbey

An online grocery store | E-commerce template

Home Page:https://freshbey.herokuapp.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Freshbey

An online grocery store - E-commerce template

freshbey_social_preview_page-0001

Here's the homepage of Freshbey

homepage-freshbey

Project Purpose!

I am a huge enthusiast of open source. Contributing to open source is a fantastic way to learn and grow. Making open source contributions will require you to have been exposed to a few important concepts, practices, and transferable skills:

  • Version control
  • Working with tickets & issues
  • Working with other developers
  • Creating pull requests
  • Experiencing a code review process
  • Setting up a local development environment
  • Contributing code to a pre-existing codebase

General Idea

Freshbey is an e-commerce platform where users can order grocery items. I built this project originally for a client but they did not pay the agreed amount. After that, I made this project open source.

Current State

As of now, Freshbey is built using MERN stack. Additionally, React Bootstrap along with Bootswatch Zephyr theme is used for styling and React Redux is used for state management.

Getting Started

Setting up the repository

Fork the repository at - roopeshsn/freshbey to your GitHub account.

Then clone the forked repository, by typing the following line in your local terminal/powershell. Remember to replace <your-username> with your actual GitHub username.

git clone https://github.com/<your-username>/freshbey.git

Navigate to the cloned repository on your local system

cd freshbey

Add remotes to the parent repository. This will help you fetch the code from the parent repo to avoid any merge conflicts later.

git remote add upstream https://github.com/roopeshsn/freshbey.git

To verify, use the command git remote -v to check if you have two remotes - origin and upstream set up.

Finally, fetch the upstream's latest code from the main branch.

git fetch upstream master

Env Variables

Create a .env file in then root and add the following

NODE_ENV = development
PORT = 5000
MONGODB_URI =
JWT_SECRET =
EMAIL_USERNAME =
EMAIL_PASSWORD =
EMAIL_HOST =
EMAIL_PORT =

Add data in .env file

The backend folder in this repository serves as the codebase for the API server which connects to a MongoDB instance to store and retrieve user, products, orders data.

MONGODB_URI

MongoDB version = 5.0.12. You can either spin up a local/Docker instance or can use MongoDB Atlas (Recommended).

Here's the similar URI which can be used to connect with the cluster mongodb+srv://admin:<password>@cluster0.p2u97.mongodb.net/freshbey?retryWrites=true&w=majority

Replace with the password for the admin user.

JWT_SECRET

Add any string like YOUR_NAME_ANY_SIGN (eg. chrismathew7) is used to create a private key which will authenticate.

EMAIL_USERNAME, EMAIL_PASSWORD, EMAIL_HOST, EMAIL_PORT

To get this credentials you need a Mailtrap account. Mailtrap is an Email testing tool. We can simulate this for the forget and reset password functions.

Select Nodemailer from integrations. You will get credentials similar to this,

var transport = nodemailer.createTransport({
  host: "smtp.mailtrap.io",
  port: 2525,
  auth: {
    user: "99195eec06f5",
    pass: "d26fe4c7d762"
  }
});

Install Dependencies (frontend & backend)

npm install
cd frontend
npm install

Run

# Run frontend (:3000) & backend (:5000)
npm run dev

# Run backend only
npm run server

Server should be running on PORT specified in env file (or 5000 by default)

To test, type localhost:PORT/ in your browser and following output should appear.

{
  message: 'Welcome to Freshbey Backend',
  version: process.env.VERSION,
  license: 'MIT',
}

Mail Service

Mailtrap (A Email Sandbox Service) is used as an email inbox to reset passwords.

Image Service

The Images for product, slide, category are manually hosted in ImgBB

Build & Deploy

The project is deployed on Heroku

git push heroku master

The above command is used to deploy the project on Heroku

Seed Database

You can use the following commands to seed the database with some sample users and products as well as destroy all data:

# Import data
npm run data:import

# Destroy data
npm run data:destroy

Contributing

Please check out CONTRIBUTING.md for more information regarding how to contribute.

Our Contributors ✨

License

MIT, see LICENSE

About

An online grocery store | E-commerce template

https://freshbey.herokuapp.com/

License:MIT License


Languages

Language:JavaScript 98.9%Language:CSS 0.8%Language:HTML 0.2%Language:Procfile 0.0%