diff --git a/app.py b/app.py index 2fd2192dda9a75ddc890968da59f5510396b0c37..493dc54d09aa275fb41eb32aa91c1fc84653aa83 100644 --- a/app.py +++ b/app.py @@ -463,15 +463,23 @@ def build_sample_db(): db.session.add(atlasti) db.session.add(Link(software=atlasti, type="website", url="https://atlasti.com/de/produkt/what-is-atlas-ti/", comment="")) - tool = Software(name="", - short_description="", + leximancer = Software(name="Leximancer", + short_description="Leximancer automatically analyses your text documents to identify the high level concepts in your text documents, delivering the key ideas and actionable insights you need with powerful interactive visualisations and data exports.", developer="", maintainer="", - softwarecategory=, - license=lic_) - db.session.add(tool) - db.session.add(Link(software=tool, type="website", url="", comment="")) + softwarecategory=cat_qda, + license=lic_prop) + db.session.add(leximancer) + db.session.add(Link(software=leximancer, type="website", url="https://info.leximancer.com/", comment="")) + maxqda = Software(name="MAXQDA", + short_description="", + developer="", + maintainer="", + softwarecategory=cat_transkript, + license=lic_prop) + db.session.add(maxqda) + db.session.add(Link(software=maxqda, type="website", url="https://www.rrz.uni-hamburg.de/services/software/alphabetisch/maxqda.html", comment="")) ''' tool = Software(name="", diff --git a/sample_db.sqlite b/sample_db.sqlite index 681dfb27abb30d999720a9d4ce84e5a0a7f2a0bc..d94e828b6dace831930de402a07592a3bef3dc3d 100644 Binary files a/sample_db.sqlite and b/sample_db.sqlite differ