Core Inventory is a web application for inventory management. This is the back-end for Core Inventory, built with:
- Node JS - To use JavaScript on the server side.
- Express - To use MVC architecture on the server side.
- MySQL - To support quick processing and store data.
This web application is also made with learning purposes.
- Open the command prompt and clone this repository.
mkdir core-inventory-backend
cd core-inventory-backend
git clone https://github.com/andresfelipedev/core-inventory-backend.git
-
Run
npm install
. -
Create a
.env
file in the root directory with the next environment variables:
DB_HOST=localhost
DB_USER=root
DB_PASSWORD=""
DB_NAME=coreinventory
TOKEN_KEY="Token-Auth"
NOTE: Replace DB_USER and DB_PASSWORD values if you have your own MySQL user and password.
- Execute
npm run dev
.
Create a pull request to contribute to this project. Open an issue to discuss major changes.