Go to file
Netscape Navigator 5cbb5c9fe8 Fix typo in public_key retrieval. 2020-09-01 07:40:13 -05:00
pigeon Fix typo in public_key retrieval. 2020-09-01 07:40:13 -05:00
.gitignore Gitignore updates 2020-08-25 08:14:14 -05:00
LICENSE Hello, world! 2020-08-02 13:59:32 -05:00
README.md Persistence layer almost works. TODO: Fix test for `CreateKeypair` 2020-08-27 07:30:15 -05:00
go.mod Gitignore updates 2020-08-25 08:14:14 -05:00
go.sum Gitignore updates 2020-08-25 08:14:14 -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

  • Finish http://go-database-sql.org/nulls.html
  • 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