A tool to manage to-do items.
Because the data is stored in your own database, it can be reached synchronously on any device.
Configure multiple users to connect to the same database, each user can edit and modify their own tasks without interfering with each other. You can even assign tasks to others, similar to Trello.
You can synchronize tasks on gitlab to tds, and even submit changes to gitlab.
You can easily configure your favorite window style.
db_host = "127.0.0.1"
db_port = "5432"
db_user = "iiran"
db_password = "iiran"
db_database = "iiran"
user = "iiran"
email = "percivalstr@163.com"
gitlab_user = ""
gitlab_ac_token = ""
cargo install tds
tds --init
USAGE:
tds [COMMAND] [OPTION]
COMMAND:
l --list, List all todo status.
i --inspect <ID> Check todo.
a --add <title> <due> Create new todo.
s --set <state> <ID>... Update todo status.
d --del <ID>... Delete todo.
v --visual Visual Mode.
p --pull <host> Pull ToDo from gitlab / github.
# create task named 'reply email', should be solved in 2 hours.
tds a 'reply email' 2hours
# mark task is cmpleted which id is 1.
tds s c 1