Skip to content

texasmadecode/invatory

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Inventory Management System

Overview

This software is designed to manage inventory using a barcode scanner and store data in a database. It allows users to add, update, and track inventory items efficiently.

Features

  • Barcode Scanner Integration: Quickly scan products to add or update inventory.
  • Database Storage: Store inventory data securely in a database.
  • User Interface: Easy-to-use interface for managing inventory.
  • CRUD Operations: Create, Read, Update, and Delete inventory items.

Getting Started

Prerequisites

  • Barcode scanner
  • Database (e.g., MySQL, PostgreSQL)
  • Programming language and framework (e.g., Python with Django)

Installation

  1. Clone the repository:
    git clone https://github.com/yourusername/inventory-management-system.git
  2. Install dependencies:
    cd inventory-management-system
    pip install -r requirements.txt  # For Python projects

Database Setup

  1. Configure your database settings in the settings.py file (for Django projects):

    DATABASES = {
        'default': {
            'ENGINE': 'django.db.backends.postgresql',
            'NAME': 'inventory_db',
            'USER': 'yourusername',
            'PASSWORD': 'yourpassword',
            'HOST': 'localhost',
            'PORT': '5432',
        }
    }
  2. Run database migrations:

    python manage.py migrate

Running the Application

  1. Start the development server:

    python manage.py runserver
  2. Access the application in your web browser at http://localhost:8000.

Usage

  1. Add Inventory: Use the barcode scanner to scan a product and fill in the details to add it to the inventory.
  2. Update Inventory: Scan an existing product to update its details.
  3. View Inventory: Browse the inventory list to view all products.
  4. Delete Inventory: Remove products from the inventory as needed.

Contributing

Contributions are welcome! Please fork the repository and submit a pull request.

License

This project is licensed under the MIT License.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors