Update documentation for reports, new CLI

This is basically a redraft of the documentation to be more complete and
better cover some of the features added since it was written.
This commit is contained in:
Dustin J. Mitchell 2021-01-01 21:17:42 +00:00
parent b29f75a075
commit 8b4f345387
10 changed files with 189 additions and 85 deletions

View file

@ -110,10 +110,10 @@ fn get_replica(settings: &Config) -> Fallible<Replica> {
/// Get the server for this invocation
fn get_server(settings: &Config) -> Fallible<Box<dyn server::Server>> {
// if server_client_id and server_origin are both set, use
// if server_client_key and server_origin are both set, use
// the remote server
if let (Ok(client_key), Ok(origin)) = (
settings.get_str("server_client_id"),
settings.get_str("server_client_key"),
settings.get_str("server_origin"),
) {
let client_key = Uuid::parse_str(&client_key)?;