Manage your inventory and check stock levels in real-time. Receive low inventory notifications and generate purchase orders to replenish your stock.
To get a local copy up and running follow these simple example steps.
Download Wamp Server on your Local System
- To install Wamp Server on your Local System read note during installation.
- Open php.ini file
cd C:\wamp64\bin\apache\apache2.4.39\bin\php.ini
- Change short_open_tag to on in php.ini and save it.
short_open_tag = on
- Change the Directory to WWW
cd C:\wamp64\www\
- Clone the repo in WWW
git clone https://github.com/pranavp10/inventory
- Open the Browser and paste the link, if it asks for login just give username = root and password is empty.
http://localhost/phpmyadmin/index.php
- Create a database with the name
inventory
- Import the file (inventory.sql) which is present in the repo
http://localhost/phpmyadmin/db_import.php?db=inventory
- Open the Browser and paste the link.
http://localhost/inventory/
├── bower_components (if using bower)
├── build
├── dist
├── images
├── pages (all php file in order of the side bar)
│ ├── hr
│ │ ├── master
│ │ │ └──...
│ │ ├── report
│ │ │ └──...
│ │ └── transaction
│ │ └──...
│ ├── Inventory
│ │ ├── master
│ │ │ └──...
│ │ ├── report
│ │ │ └──...
│ │ └── transaction
│ │ └──...
│ └── PurchaseAndsales
│ │ ├── master
│ │ │ └──...
│ │ ├── report
│ │ │ └──...
│ │ └── transaction
│ │ └──...
├── plugins
├── scripts (all js file)
│ ├── home
│ │ └──...
│ ├── hr
│ │ └──...all file
│ ├── Inventory
│ │ └──...all file
│ └── PurchaseAndsales
│ │ └──...all file
├── LICENSE
├── check_user_name.php
├── connect.php
├── create_user.php
├── delete_user.php
├── get_home_user_id.php
├── home_users.php
├── index.php
├── inventory.sql
├── README.md
└── update_user.php
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE
for more information.
Linkedin - Pranav - pranavkp.me@outlook.com
More Project Link: https://github.com/pranavp10