Skip to content

Latest commit

 

History

History
37 lines (35 loc) · 582 Bytes

README.md

File metadata and controls

37 lines (35 loc) · 582 Bytes

inventory-management

This is a inventory management system

How to Setup

  1. Clone Project
git clone https://github.com/sajib1066/inventory-management.git
  1. Go To Project Directory
cd inventory-management
  1. Create Virtual Environment
python3 -m venv venv
  1. Active Virtual Environment
source venv/bin/activate
  1. Install Requirements File
pip install -r requirements.txt
  1. Migrate Database
python manage.py migrate
  1. Create Super User
python manage.py createsuperuser
  1. Run Project
python manage.py runserver