agate

Simple gemini server for static files
git clone https://github.com/mbrubeck/agate.git
Log | Files | Refs | README

commit 9b260dfdd2fba8c0d7d3af0a2ebdf7fe1a90dad8
parent a20af4ad122ab241d3d5ef69071b7daed5594bb9
Author: Matt Brubeck <mbrubeck@limpet.net>
Date:   Sat, 20 Jun 2020 10:53:10 -0700

Link to pre-compiled binary

Diffstat:
MREADME.md | 8+++++++-
1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md @@ -12,7 +12,13 @@ Agate is a server for the [Gemini] network protocol, built with the [Rust] progr ## Installation and setup -1. [Install the Rust toolchain][rustup]. +1. Download and unpack the [pre-compiled binary](https://github.com/mbrubeck/agate/releases). + + Or, if you have the Rust toolchain installed, run `cargo install agate` to + install agate from crates.io. + + Or download the source code and run `cargo build --release` inside the + source repository, then find the binary at `target/release/agate`. 2. Run `cargo install agate` to install agate from crates.io, or clone the [source], run `cargo build --release`, and then copy the compiled binary from `target/release/agate` to any location you want. (You can also use `cargo run --release <args>` to run Agate from within the source directory.)