ad-si / TaskLite

The CLI task manager for power users
https://tasklite.org
GNU Affero General Public License v3.0
228 stars 13 forks source link

tasklite webapp cannot list tasks #91

Open vbmithr opened 2 weeks ago

vbmithr commented 2 weeks ago

image

ad-si commented 2 weeks ago

Mh, interesting. Did you set it up as described here: https://tasklite.org/web_based_guis/web_app#usage ?

vbmithr commented 2 weeks ago

Yep. I'm using latest commit.

ad-si commented 2 weeks ago

Oh, I only created the necessary view in my local database for testing. I created a new tracking issue for this at #93.

As a quickfix you can simply execute this query on your main.db:

CREATE VIEW "tasks_head" AS SELECT *
FROM tasks_view
WHERE closed_utc IS NULL
ORDER BY priority DESC, due_utc ASC, ulid DESC
LIMIT 50
vbmithr commented 2 weeks ago

Works, thanks.