A command-line warehouse inventory management system built with C++. Features CRUD operations for item management including view items in table format, add new items, search items, update stock levels, and delete items with JSON-based data persistence.
Installation procedure using CMD:
- Download CMake to manage cross-platform build processes and install it after downloading:
https://cmake.org/download/
- Clone the repository onto your local machine:
git clone https://github.com/Fahreja-Dev/Warehouse-Inventory-System- Then enter the project directory with the command:
cd Warehouse-Inventory-System- Create a folder named
build, type the command:
mkdir build- Go to the build folder, type the command:
cd build- Next, read the
CMakeLists.txtfile in the root directory and create a build file in the current directory by typing the command:
cmake ..- Run the
buildcompilation process based on the configuration file previously created bycmake .., type the command:
cmake --build .- Then open the root directory of the project and run the application named
AplikasiGudang.exe.
