Skip to content

Proyecto Final Course Up de Codellege sobre un ecommerce Equipo Pink Neon con Erick Gonzalez, Adamari Guerrero, Omar Cavazos y Norma Aranda

License

Notifications You must be signed in to change notification settings

IdaliaAT/ecommerceServer

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ecommerce Pink Neon - Server

This project is the server for the management of the ecommerce site, it is based on the MVC architecture, adding the single responsibility pattern.

Folder Structure

.
├── src
│   ├── config
│   │   ├── authToken.js
│   │   └── database.js
│   │
│   ├── controllers
│   │   ├── Address/address.js
│   │   ├── Cart/cart.js
│   │   ├── Category/category.js
│   │   ├── Order/order.js
│   │   ├── OrderDetail/orderDetail.js
│   │   ├── Product/product.js
│   │   ├── SubCategory/subCategory.js
│   │   ├── User/user.js
│   │   └── WishList/wishList.js
│   │
│   ├── models
│   │   ├── Cart
│   │   │   ├── Cart.js
│   │   │   └── CartItem.js
│   │   ├── Order
│   │   │   ├── Order.js
│   │   │   └── OrderDetail.js
│   │   ├── Product
│   │   │   ├── Product.js
│   │   │   ├── Category.js
│   │   │   └── Subcategory.js
│   │   ├── User
│   │   │   ├── Address
│   │   │   │   ├── Address.js
│   │   │   │   ├── Country.js
│   │   │   │   └── State.js
│   │   │   ├── Role.js
│   │   │   ├── Status.js
│   │   │   ├── User.js
│   │   │   └── UserAddress.js
│   │   ├── WishList
│   │   │   └── wishList.js
│   │   └── index.js
│   │
│   ├── routes
│   │   ├── address
│   │   │   └── address.js
│   │   ├── cart
│   │   │   └── cart.js
│   │   ├── category
│   │   │   └── category.js
│   │   ├── order
│   │   │   ├── order.js
│   │   │   └── orderDetail.js
│   │   ├── product
│   │   │   └── product.js
│   │   ├── subCategory
│   │   │   └── subCategory.js
│   │   ├── user
│   │   │   └── user.js
│   │   ├── wishList
│   │   │   └── wishList.js
│   │   └── index.js
│   │
│   ├── server.js
│   ├── .env
│   ├── .gitignore
│   ├── LICENSE
│   ├── package-lock.json
└── └── package.json

Installation

Clone repo via https://github.com/Erick-Gonza/ecommerceServer.git

Before installing the dependencies, check the required environment variables.

Start your MySQL database with the same name as .env environment variable.

    cd ecommerceServer
    npm i
    npm run dev || npm run start

Environment Variables

To run this project, you will need to add the following environment variables to your .env file

DB_NAME

DB_USER_NAME

DB_PASSWORD

DB_HOST

DB_PORT

PORT

SECRET

Authors

About

Proyecto Final Course Up de Codellege sobre un ecommerce Equipo Pink Neon con Erick Gonzalez, Adamari Guerrero, Omar Cavazos y Norma Aranda

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 98.8%
  • Shell 1.2%