Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ksh168/inventory-django-project
https://github.com/ksh168/inventory-django-project
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ksh168/inventory-django-project
- Owner: ksh168
- Created: 2022-01-25T12:53:52.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-08-17T19:32:54.000Z (5 months ago)
- Last Synced: 2024-08-17T20:29:29.910Z (5 months ago)
- Language: Python
- Size: 756 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Inventory Management System
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.
## Features
- Add new inventory items
- Update existing inventory items
- Delete inventory items
- View a list of all inventory items
- Search for inventory items## Technologies used
- Django
- Python
- SQLite3
- HTML
- CSS
- JavaScript## Demo video
[Watch the demo video](inventorymanagement.mp4)
## Installation
1. Clone the repository:
```bash
git clone https://github.com/ksh168/Inventory-django-project.git
cd Inventory-django-project
```2. Create and activate a virtual environment:
```bash
python3 -m venv ./venv
source ./venv/bin/activate
```3. Install the required dependencies:
```bash
pip install -r requirements.txt
```4. Run the development server:
```bash
python manage.py runserver
```5. Access the application at `http://127.0.0.1:8000/`.
## Configuration
Make sure to update the `settings.py` file with your specific configuration, such as database settings, allowed hosts, and other settings as needed.
## Usage
- 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.## Contributing
Contributions are welcome! Please fork the repository and submit a pull request with your changes.