Skip to content

aboueleyes/ecommerce-website

Repository files navigation

Ecommerce

References

Add your reference here

Code Formatter

  • Add a .vscode directory
  • Create a file settings.json inside .vscode
  • Install Prettier - Code formatter in VSCode
  • Add the following snippet:
    {
      "editor.formatOnSave": true,
      "prettier.singleQuote": true,
      "prettier.arrowParens": "avoid",
      "prettier.jsxSingleQuote": true,
      "prettier.trailingComma": "none",
      "javascript.preferences.quoteStyle": "single",
    }

Tools

For setting up project:

Initial steps:

Node

Download Node

Database

Download MongoDB
Install Mongo

Each one of us will use a different local DataBase, we will host a shared DB online later

Project Structure

.
├── app.js              <- Start the website
├── bin
│   └── www
├── LICENSE
├── package.json
├── public              <- Static files
│   ├── images
│   │   ├── background1.jpg
│   │   ├── books.png
│   │   ├── boxing.jpg
│   │   └── ...
│   ├── javascripts
│   └── stylesheets
│       └── style.css
├── README.md
├── routes             
│   ├── index.js
│   └── users.js
└── views               <- templates for the web pages 
    ├── books.ejs
    ├── login.ejs
    ├── registration.ejs
    ├── searchresults.ejs
    └── ... 

About

eCommerce website built using MERN

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published