Go to file
Netscape Navigator afd0253b29 Test failure cases for Base32 2020-08-24 07:32:26 -05:00
pigeon Test failure cases for Base32 2020-08-24 07:32:26 -05:00
.gitignore Minor typos, gitignore updates, removals 2020-08-23 18:23:17 -05:00
LICENSE Hello, world! 2020-08-02 13:59:32 -05:00
README.md Re-arrange modules 2020-08-24 07:22:34 -05:00
coverage.out Test failure cases for Base32 2020-08-24 07:32:26 -05:00
go.mod Start adding NutsDB 2020-08-20 08:13:38 -05:00
go.sum Start adding NutsDB 2020-08-20 08:13:38 -05:00

README.md

Pigeon CLI

A single executable to manage a Pigeon node.

Project Status

Don't use the Go version yet. If you want something stable, there is a Ruby version that is feature complete.

TODO

  • Add a real testing lib to DRY things up.
  • Get a good CI system going? Run tests at PR time, prevent coverage slips, etc..
  • Finish all the things below:
Done? Verb Noun Flag / arg 1 Flag 2
create identity
show identity
create draft
show blob
show draft
create blob file path
create blob pipe
update draft --key=? --value=?
publish draft
follow peer user mhash
unblock peer user mhash
block peer user mhash
create bundle
find message --all
find message --last
ingest bundle
show message message mhash
show peers
show peers --blocked
unfollow peer
X help
X version

Run Tests

Without coverage:

go test -v ./...

With coverage:

go test -v ./... -coverprofile coverage.out
go tool cover -html=coverage.out

Build Project

go build --o=pigeon-cli