Merge working version

This commit is contained in:
Alexander Minges 2019-01-31 14:49:46 +01:00
parent a4d53f3193
commit 3afaa831c9
33 changed files with 698 additions and 115 deletions

View file

@ -1 +1,6 @@
from phytopi import app
from phytopi import app, db
from phytopi.models import Dataset, Image
@app.shell_context_processor
def make_shell_context():
return {'db': db, 'Dataset': Dataset, 'Image': Image}