diff --git a/.pylintrc b/.pylintrc index 8f79755..63cf887 100644 --- a/.pylintrc +++ b/.pylintrc @@ -1,5 +1,6 @@ [MASTER] load-plugins=pylint_django +django-settings-module=im.settings [FORMAT] max-line-length=120 diff --git a/README.md b/README.md index e9e3902..1c7a34d 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ The object of this django app is to keep track of which goods you own, when they - Enter items in your pantry (or other locations, with their location) with their expiry date - Items can have a minimum quantity you always want to keep in the pantry - a shopping list is automatically populated with items whose quantity is below this minimum quantity - - you can add one off items to this shopping list that are not tracked in the inventory. + - you can add one-off items to this shopping list that are not tracked in the inventory. - You get an overview of items per expiry date so you know what to consume first (or throw away) - Extensive search and filtering and grouping on locations, categories, units, expiry date using the auto generated django admin @@ -24,7 +24,7 @@ The object of this django app is to keep track of which goods you own, when they ``` dnf install -y python3-pip git pip3 install django -git clone git@github.com:JensTimmerman/im.git +git clone https://gitea.caret.be/jens/im.git cd im python3 manage.py migrate @@ -157,7 +157,7 @@ browse to https://im.yourdomain # feature requests ## High -- Add itmes per location, click a location and then start adding items with the location list prepopulated +- Add items per location, click a location and then start adding items with the location list prepopulated - auto refresh dropdown boxes after items have been added in admin view, so page reload is not needed - auto parse dates in different date formats when given in a datefield. e.g. 20 12 2020 or 2020 12 20 to 2020-12-20 - also make ipad show the numbered keyboard here @@ -199,9 +199,9 @@ browse to https://im.yourdomain - easily deploy somewhere ## low -- add recepies -- shopping list created based on recepy ingredients -- auto proposal of recepy based on next expiry dates +- add recipes +- shopping list created based on recipe ingredients +- auto proposal of recipe based on next expiry dates - offer to buy things that have been on shopping list for a while online (in bulk/aggregated) - 3d view of where things are in space - vr to help locate things diff --git a/requirements.txt b/requirements.txt index 81de0fa..e414eac 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ #requirements.txt -django>=2.2.8 +django>=2.2.19 gunicorn