Merge pull request 'main' (#1) from jens/im:main into main

Reviewed-on: #1
This commit is contained in:
Fre Timmerman 2021-02-23 18:58:57 +00:00
commit cefe26a91a
3 changed files with 8 additions and 7 deletions

View File

@ -1,5 +1,6 @@
[MASTER] [MASTER]
load-plugins=pylint_django load-plugins=pylint_django
django-settings-module=im.settings
[FORMAT] [FORMAT]
max-line-length=120 max-line-length=120

View File

@ -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 - 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 - 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 - 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) - 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 - 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 dnf install -y python3-pip git
pip3 install django pip3 install django
git clone git@github.com:JensTimmerman/im.git git clone https://gitea.caret.be/jens/im.git
cd im cd im
python3 manage.py migrate python3 manage.py migrate
@ -157,7 +157,7 @@ browse to https://im.yourdomain
# feature requests # feature requests
## High ## 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 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 - 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 - also make ipad show the numbered keyboard here
@ -199,9 +199,9 @@ browse to https://im.yourdomain
- easily deploy somewhere - easily deploy somewhere
## low ## low
- add recepies - add recipes
- shopping list created based on recepy ingredients - shopping list created based on recipe ingredients
- auto proposal of recepy based on next expiry dates - 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) - 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 - 3d view of where things are in space
- vr to help locate things - vr to help locate things

View File

@ -1,3 +1,3 @@
#requirements.txt #requirements.txt
django>=2.2.8 django>=2.2.19
gunicorn gunicorn