An open-source and self-hostable ecommerce application with a focus on developer productivity and ease of customization.
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:
Freshcomm is an open-source and self-hostable ecommerce application with a focus on developer productivity and ease of customization.
As of now, Freshcomm 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.
Fork the repository at - roopeshsn/freshcomm 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>/freshcomm.git
Navigate to the cloned repository on your local system
cd freshcomm
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/freshcomm.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
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 =
CLOUDINARY_CLOUD_NAME =
CLOUDINARY_API_KEY =
CLOUDINARY_API_SECRET =
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 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/freshcomm?retryWrites=true&w=majority
Replace
Add any string like YOUR_NAME_ANY_SIGN (eg. chrismathew7) is used to create a private key which will authenticate.
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"
}
});
Product images are hosted in Cloudinary. Create an account in Cloudinary and add appopriate credentials in .env
file.
npm install
cd frontend
npm install
# 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 Freshcomm Backend',
version: process.env.VERSION,
license: 'MIT',
}
Mailtrap (A Email Sandbox Service) is used as an email inbox to reset passwords.
The Images for product, slide, category are manually hosted in Cloudinary
The project is deployed on Heroku
git push heroku master
The above command is used to deploy the project on Heroku
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
Please check out CONTRIBUTING.md for more information regarding how to contribute.
MIT, see LICENSE