Go to file
Netscape Navigator e1f120cc3f Gitignore updates 2020-09-08 07:27:27 -05:00
.gitignore Gitignore updates 2020-09-08 07:27:27 -05:00
LICENSE Hello, world! 2020-08-02 13:59:32 -05:00
README.md WIP need to re-do modules I think. 2020-09-01 07:52:44 -05:00
go.mod Gitignore updates 2020-08-25 08:14:14 -05:00
go.sum Gitignore updates 2020-09-08 07:27:27 -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

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