zorath-env 0.3.8

Fast CLI for .env validation against JSON/YAML schemas. 14 types, secret detection, watch mode, remote schemas, 7 export formats, CI templates, health diagnostics, code scanning, auto-fix. Language-agnostic single binary.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! zorath-env library
//!
//! This module exposes the internal functionality for integration testing.
//! The primary interface is the CLI binary (`zenv`), but these modules
//! can be used programmatically for testing and embedding.

pub mod commands;
pub mod config;
pub mod envfile;
pub mod presets;
pub mod remote;
pub mod schema;
pub mod secrets;
pub mod suggestions;