This file covers how to compile vertd from source.
- Git
- A working Rust toolchain
To clone the repository, run:
$ git clone https://github.com/VERT-sh/vertd
$ cd vertd/You can compile vertd using cargo (Rust's package manager and build tool):
$ cargo build # for a debug build
$ cargo build --release # for a release buildYou might also run it by using cargo run instead.