Skip to content

Commit

Permalink
multi: Split dcrctl to own repo and update docs
Browse files Browse the repository at this point in the history
The dcrctl project is being split out of the dcrd repo and module into
its own repo (https://github.com/decred/dcrctl) and module
(decred.org/dcrctl).  This commit removes the dcrctl main package and
updates documentation throughout the repo mentioning dcrctl and its
build instructions.
  • Loading branch information
jrick committed May 1, 2020
1 parent e12b0a7 commit 033f410
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 792 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ _testmain.go
dcrd
cmd/addblock/addblock
cmd/checkdevpremine/checkdevpremine
cmd/dcrctl/dcrctl
cmd/findcheckpoint/findcheckpoint
cmd/gencerts/gencerts
cmd/promptsecret/promptsecret
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Core software:

* dcrd: a Decred full node daemon (this)
* [dcrwallet](https://github.com/decred/dcrwallet): a CLI Decred wallet daemon
* [dcrctl](https://github.com/decred/dcrctl): a CLI client for dcrd and dcrwallet

Bundles:

Expand Down Expand Up @@ -179,8 +180,9 @@ https://decred.org/downloads

```sh
$ git clone https://github.com/decred/dcrd $HOME/src/dcrd
$ cd $HOME/src/dcrd
$ go install . ./cmd/...
$ git clone https://github.com/decred/dcrctl $HOME/src/dcrctl
$ (cd $HOME/src/dcrd && go install . ./...)
$ (cd $HOME/src/dcrctl && go install)
$ dcrd -V
```

Expand Down
Loading

0 comments on commit 033f410

Please sign in to comment.