This is an Inventory Management System built using Django. The application allows users to manage and track inventory items, including adding, updating, and deleting items.
- Add new inventory items
- Update existing inventory items
- Delete inventory items
- View a list of all inventory items
- Search for inventory items
- Django
- Python
- SQLite3
- HTML
- CSS
- JavaScript
-
Clone the repository:
git clone https://github.com/ksh168/Inventory-django-project.git cd Inventory-django-project -
Create and activate a virtual environment:
python3 -m venv ./venv source ./venv/bin/activate -
Install the required dependencies:
pip install -r requirements.txt
-
Run the development server:
python manage.py runserver
-
Access the application at
http://127.0.0.1:8000/.
Make sure to update the settings.py file with your specific configuration, such as database settings, allowed hosts, and other settings as needed.
- Access the admin panel at
http://127.0.0.1:8000/admin/to manage inventory items. - Use the API endpoints to interact with the inventory items programmatically.
Contributions are welcome! Please fork the repository and submit a pull request with your changes.