dotenvage 0.3.2

Dotenv with age encryption: encrypt/decrypt secrets in .env files
Documentation
1
2
3
4
5
6
7
8
//! Build script to install git hooks via rhusky
fn main() {
    rhusky::Rhusky::new()
        .hooks_dir(".githooks")
        .skip_in_env("GITHUB_ACTIONS")
        .install()
        .ok();
}