vivo 0.11.2

restic backup orchestrator with multi-remote sync and SOPS-encrypted secrets
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod backup_config;
pub(crate) mod config;
pub mod ui;
pub mod step;
pub mod remote;
pub mod doctor;
pub mod mount;
pub mod update;
pub mod config_editor;
pub mod tui;

pub use crate::config::{build_cli, config_path_from, secrets_path_from, xdg_config_home, Secrets, VivoConfig};
pub use crate::backup_config::{age_public_key, decrypt_sops_file, import_b2_credentials, parse_secrets, update_s3_in_secrets, BackupConfig};
pub use crate::backup_config::backup::expand_env_vars;
pub use config_editor::{add_task, add_remote, remove_task, remove_remote, TaskSpec, RemoteSpec};