Home
Softono

Togoo

Open source Go
23
Stars
2
Forks
0
Issues
4
Watchers
9 years
Last Commit

 About Togoo

Super Simple CLI for TODO management 🐠

Platforms

Web Self-hosted

Languages

Go

Links

Need Help Installing Togoo?

We provide expert installation service for this software. Our team will install, configure, and secure Togoo on your server. plans start at just $30.

Togoo Build Status Go Report Card

Togoo : Simple CLI TODO Tool, using Golang and SQLite.

Usage

Install

To install, use go get:

$ go get -u github.com/kakakakakku/togoo
$ togoo init

Commands

init
add, a
update, u
list, l
done, d
delete
help, h

Usage

➜  ~  togoo add xxx
➜  ~  togoo add yyy
➜  ~  togoo list
+----+-------+--------+
| NO | TITLE | STATUS |
+----+-------+--------+
|  1 | xxx   | -      |
|  2 | yyy   | -      |
+----+-------+--------+
➜  ~  togoo done 1
➜  ~  togoo list
+----+-------+--------+
| NO | TITLE | STATUS |
+----+-------+--------+
|  2 | yyy   | -      |
+----+-------+--------+
➜  ~  togoo list -a
+----+-------+--------+
| NO | TITLE | STATUS |
+----+-------+--------+
|  1 | xxx   | Done   |
|  2 | yyy   | -      |
+----+-------+--------+

Contribution

  1. Fork (https://github.com/kakakakakku/togoo/fork)
  2. Create a feature branch
  3. Commit your changes
  4. Rebase your local changes against the master branch
  5. Run test suite with the go test ./... command and confirm that it passes
  6. Run gofmt -s
  7. Create a new Pull Request

Author