this repo has no description
0
fork

Configure Feed

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

update README with goat migration

+4 -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
+3 -3
cmd/goat/README.md
··· 12 12 If you have the Go toolchain installed and configured correctly, you can directly build and install the tool for your local account: 13 13 14 14 ```bash 15 - go install github.com/bluesky-social/indigo/cmd/goat@latest 15 + go install github.com/bluesky-social/goat@latest 16 16 ``` 17 17 18 18 A more manual way to install is: 19 19 20 20 ```bash 21 - git clone https://github.com/bluesky-social/indigo 22 - go build ./cmd/goat 21 + git clone https://github.com/bluesky-social/goat 22 + go build . 23 23 sudo cp goat /usr/local/bin 24 24 ``` 25 25