Crates.io | suaide |
lib.rs | suaide |
version | 0.1.0 |
source | src |
created_at | 2020-09-30 20:15:08.061852 |
updated_at | 2020-09-30 20:15:08.061852 |
description | A simple CLI app to track todos and tasks within the terminal. |
homepage | https://github.com/naamancurtis/suaide |
repository | https://github.com/naamancurtis/suaide |
max_upload_size | |
id | 294742 |
size | 83,516 |
[Stand-Up Aide] A lightweight 100% offline CLI App to help with the management of todos & tasks within the terminal, with the added functionality to output a stand-up style report.
It's very much in an early beta testing stage, so please raise an issue if you spot anything or have a feature request.
Under the hood this uses SQLite 3
for storage, (included in most MacOS
distributions). If your system doesn't have it installed you'll need to install
a recent version of it (this was developed on SQLite v3.28.0
).
Command | Description |
---|---|
add |
Adds a new task |
edit |
Edit a task |
list |
Lists all tasks |
remove |
Deletes a task |
close |
Marks a task as closed |
status |
Change the status of a task |
standup |
Prints out the stand-up output |
There are two options for overwriting default settings for suaide: (in order of precedence)
SUAIDE_
~/.suaide/settings.yml
Setting | Description | Default |
---|---|---|
db_url |
The path to the suaide.sqlite file used as the database for the tasks |
~/.suaide |
ticket_prefix |
A prefix that will be automatically applied to any ticket id if set | "" |
db_url: ~/code/todos
ticket_prefix: TASK-
SUAIDE_DB_URL="~/code/todos"