Git repo for the im (Inventor management) app that helps you organise your pantry inventory (and the world)
Go to file
Jens Timmerman 26980d4ad7 Added some things to publish this app 2018-09-20 23:00:24 +02:00
im added some views 2018-09-20 22:14:05 +02:00
inventory extra admin niceness 2018-09-20 23:00:05 +02:00
.gitignore Initial commit 2018-09-16 12:17:52 +02:00
LICENSE Initial commit 2018-09-16 12:17:52 +02:00
MANIFEST.in Added some things to publish this app 2018-09-20 23:00:24 +02:00
README.md Added some things to publish this app 2018-09-20 23:00:24 +02:00
manage.py initial commit 2018-09-16 12:35:02 +02:00
setup.py Added some things to publish this app 2018-09-20 23:00:24 +02:00

README.md

im

Pantry inventory management

Inventory management system written in django - python

The object of this django app is to keep track of which goods you own, when they will expire, when you should consume them and when you shoud buy more.

Getting started

pip3 install django

  1. Add "inventory" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [ ... 'inventory', ]

  2. Include the inventory URLconf in your project urls.py like this::

    path('inventory/', include('inventory.urls')),

  3. Run python manage.py migrate to create the polls models.

  4. Start the development server and visit http://127.0.0.1:8000/admin/ to create a pantry inventory (you'll need the Admin app enabled).

  5. Visit http://127.0.0.1:8000/inventory/ to view your inventory website.

feature requests

High

  • shopping list based on min quantity

  • one off shoping list

  • easy clearing of shopping list

  • correct capilisation

low

  • add recepies
  • shopping list created based on recepy ingredients
  • auto proposal of recepy based on next expiry dates