https://github.com/swetshaw/inventory-management-system
https://github.com/swetshaw/inventory-management-system
flask full-stack inventory-management inventory-management-system python3
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/swetshaw/inventory-management-system
- Owner: swetshaw
- Created: 2021-05-30T19:55:29.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-05-31T05:56:07.000Z (about 4 years ago)
- Last Synced: 2024-11-16T17:19:53.126Z (8 months ago)
- Topics: flask, full-stack, inventory-management, inventory-management-system, python3
- Language: HTML
- Homepage:
- Size: 17.6 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# inventory-management-system
This project implements an inventory management system using Flask
## Installation
### Clone the repository
```
git clone https://github.com/swetshaw/inventory-management-system.git
```
### Enter into the folder
```
cd inventory-management-system
```
### Install required libraries
```
pip3 install -r requirements.txt
```
### Initialize the database
```
flask init-db
```
### Run the application
```
flask run
```
## Demo
#### Dashboard
Following page opens up when `flask run` is executed. This is called the **Dashboard** page. It displays the product quantity in each location.
#### Products
This page shows all the products listed for the inventory.
- Features
- Add product
- Edit product
#### Location
This page is similar to the products page where all the location of the inventory is listed.
- Features
- Add Location
- Edit Location
#### Product Movement
On this page, the user can move the product from one location to another.
- Features
- Move Product
