https://github.com/arborchat/sprig
Cross platform Arbor client, mirrored from SourceHut
https://github.com/arborchat/sprig
arbor arborchat chat client tree
Last synced: 5 months ago
JSON representation
Cross platform Arbor client, mirrored from SourceHut
- Host: GitHub
- URL: https://github.com/arborchat/sprig
- Owner: arborchat
- License: apache-2.0
- Created: 2020-06-11T16:38:02.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2024-06-26T19:38:25.000Z (almost 2 years ago)
- Last Synced: 2025-10-09T12:23:21.549Z (8 months ago)
- Topics: arbor, arborchat, chat, client, tree
- Language: Go
- Homepage: https://git.sr.ht/~whereswaldon/sprig
- Size: 1.56 MB
- Stars: 13
- Watchers: 2
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
## sprig
Sprig is the [Arbor](https://arbor.chat) reference chat client.

### Try it
To give it a shot on desktop, install [go 1.18+](https://golang.org/dl).
Then make sure you have the
[gio dependencies](https://gioui.org/doc/install#linux) for your current OS.
Run:
```
# install a build system tool
go install github.com/magefile/mage@latest
# clone the source code
git clone https://git.sr.ht/~whereswaldon/sprig
# enter the source code directory
cd sprig
```
Then issue a build for the platform you're targeting by executing one of these:
- `windows`: `make windows`
- `macos`: `make macos` (only works from a macOS computer)
- `linux`: `make linux`
- `android`: `make android` (requires android development environment)
- `ios`: `make ios` (only works from a macOS computer)
After running `make`, there should be an archive file containing a build for the
target platform in your current working directory.
For android in particular, you can automatically install it on a plugged-in
device (in developer mode) with:
```
make android_install
```
You'll need a functional android development toolchain for that to work.