this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

goat migration notice (#1138)

authored by

bnewbold and committed by
GitHub
8be10287 4ea510ee

+7 -4
+1 -1
README.md
··· 15 15 16 16 **Developer Tools:** 17 17 18 - **goat** ([README](./cmd/goat/README.md)): CLI for interacting with network: CAR files, firehose, APIs, etc 18 + - **goat** ([README](https://github.com/bluesky-social/goat): CLI for interacting with network: CAR files, firehose, APIs, etc 19 19 20 20 **Go Packages:** 21 21
+6 -3
cmd/goat/README.md
··· 1 1 `goat`: Go AT protocol CLI tool 2 2 =============================== 3 3 4 + **NOTE: this project is moving to a dedicated git repo at [bluesky-social/goat](https://github.com/bluesky-social/goat). This copy of the code is deprecated and will eventually be removed, though a notice will remain.** 5 + 6 + 4 7 This is a re-implementation of [adenosine-cli](https://gitlab.com/bnewbold/adenosine/-/tree/main/adenosine-cli?ref_type=heads) in golang. 5 8 6 9 ··· 9 12 If you have the Go toolchain installed and configured correctly, you can directly build and install the tool for your local account: 10 13 11 14 ```bash 12 - go install github.com/bluesky-social/indigo/cmd/goat@latest 15 + go install github.com/bluesky-social/goat@latest 13 16 ``` 14 17 15 18 A more manual way to install is: 16 19 17 20 ```bash 18 - git clone https://github.com/bluesky-social/indigo 19 - go build ./cmd/goat 21 + git clone https://github.com/bluesky-social/goat 22 + go build . 20 23 sudo cp goat /usr/local/bin 21 24 ``` 22 25