Add asynchronous call to database.
[recipes.git] / TODO.md
1 * Try using WASM for all the client logic (test on signup page)
2 * Describe the use cases.
3 * Define the UI (mockups).
4     * Two CSS: one for desktop and one for mobile
5 * Define the logic behind each page and action.
6
7 [ok] Check cookie lifetime -> Session by default
8 [ok] Asynchonous email sending and database requests
9     [ok] Try to return Result for async routes (and watch what is printed in log)
10     [ok] Then try to make async database calls
11     [ok] Set email sending as async and show a waiter when sending email. Handle (and test) a timeout (~10s). -> (timeout put to 60s)
12 [ok] How to log error to journalctl?
13 [ok] Sign out
14 [ok] Read all the askama doc and see if the current approach is good
15 [ok] Handle 404
16 [ok] Enable Logging to file.
17 [ok] Implement the model as relational with SQLite.
18     [ok] Create and update functions.