Skip to content

Latest commit

 

History

History
196 lines (159 loc) · 5.07 KB

README.md

File metadata and controls

196 lines (159 loc) · 5.07 KB

Inventory

Code Coverage License: MIT

Table of Contents

About The Project

inventory info

Manage your inventory and check stock levels in real-time. Receive low inventory notifications and generate purchase orders to replenish your stock.

Built With

Frontend

Backend

Database

Getting Started

To get a local copy up and running follow these simple example steps.

Prerequisites

Download Wamp Server on your Local System

Installation

  1. To install Wamp Server on your Local System read note during installation.
  2. Open php.ini file
cd C:\wamp64\bin\apache\apache2.4.39\bin\php.ini
  1. Change short_open_tag to on in php.ini and save it.
short_open_tag = on
  1. Change the Directory to WWW
cd C:\wamp64\www\
  1. Clone the repo in WWW
git clone https://github.com/pranavp10/inventory
  1. 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
  1. Create a database with the name
inventory
  1. Import the file (inventory.sql) which is present in the repo
http://localhost/phpmyadmin/db_import.php?db=inventory
  1. Open the Browser and paste the link.
http://localhost/inventory/

Hooray! 😃 done with the Installation 👏

File Structure

├── 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

Contributing

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.

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

Distributed under the MIT License. See LICENSE for more information.

Contact

Linkedin - Pranav - pranavkp.me@outlook.com

More Project Link: https://github.com/pranavp10