This is a back-end of the Inventory-System-UI
git clone https://github.com/abrehan2/Inventory-System-API.git
npm install
PORTDB_URLJWT_SECRETJWT_EXPIRECOOKIE_EXPIREFRONTEND_URLSMPT_SERVICESMPT_MAILSMPT_PASSWORDSMPT_HOSTSMPT_PORTCLOUD_NAMEAPI_KEYAPI_SECRET
.
│ └── config # Stores all the database configurations
│ └── controllers # Stores all the components to handle client-side requests
│ └── middlewares # Stores all the middlewares to be used throughout the application
│ └── models # Stores all the schemas to be used throughout the application
│ └── routes # Stores all the API routes
│ └── utils # Stores all the features, email and JSON web token configurations, and the error-handling root class
| ├── app.js # Instantiates all the routes and middlewares
| ├── server.js # Entry point for a server
└──