An inventory tracking web application that supports CRUD operations.
User can
1. Create inventory items
2. Edit any item
3. Delete any item
4. View a list of all Items
All the requirements have been specified in requirements.txt file.
cdto the directory where this code is present.- Install requirements by running
pip install -r requirements.txt - Run
python manage.py makemigrationsto make migrations - Run
python manage.py migrateto apply migrations - Run
python manage.py runserverto run the server - Open any web browser and go to
http://127.0.0.1:8000/