Skip to content

Commit

Permalink
add: rendering and listing from database
Browse files Browse the repository at this point in the history
  • Loading branch information
geofmureithi committed Dec 15, 2023
1 parent dbf9bca commit 94c0920
Show file tree
Hide file tree
Showing 11 changed files with 353 additions and 97 deletions.
139 changes: 136 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions Kasuku.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
[internals]
cache-path = "./cache"

[apps]
planning = { plugins = ["tasks"], mount = "./Tasks" }
[vaults.planning]
plugins = ["tasks"]
mount = "/home/geoff/Documents/kasuku"
file_types = ["md"]
# budget = { plugins = ["tasks", "finance", "schedule"], mount = "./Bills" }
# entertainment = { plugins = ["files", "spotify", "audible"], mount = "./Media" }

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Kasuku is a all-in-one personal management system using wasm

## Todo Features

- [**Tasks:**](/plugins/tasks/) Stay on top of your to-do list and tasks. Mark tasks as complete, set priorities, and organize your day.
- [**📝Tasks:**](/plugins/tasks/) Stay on top of your to-do list and tasks. Mark tasks as complete, set priorities, and organize your day.

- **Notes:** Capture your thoughts, ideas, and inspirations. Organize notes into categories and easily search for them.

Expand Down
8 changes: 6 additions & 2 deletions crates/backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ heck = "0.4"
hirola = { version = "0.4.0-beta.0", default-features = false }
serde_json = "1"
figment = { version = "0.10", features = ["toml", "env"] }
walkdir = "2.4.0"
async-walkdir = "0.2.0"
notify = "6.1.1"
xtra = { git = "https://github.com/Restioson/xtra", features = ["tokio", "macros"] }
xtra = { git = "https://github.com/Restioson/xtra", features = [
"tokio",
"macros",
] }
futures = "0.3"
Loading

0 comments on commit 94c0920

Please sign in to comment.