• v0.1.0 99d63180e6

    v0.1.0
    Some checks failed
    CI / test (push) Failing after 16s
    Stable

    7000pctAUTO released this 2026-03-22 15:14:19 +00:00 | 6 commits to main since this release

    Initial release of EnvSchema - Environment Variable Schema Validator

    Features

    • Schema validation with type checking (str, int, bool, list)
    • Missing required variable detection
    • .env.example generation from schema
    • CI/CD integration for pre-deployment checks
    • Support for JSON and YAML schema formats
    • Pattern validation with regex support

    Installation

    pip install envschema
    

    Quick Start

    # Validate .env against schema
    envschema validate .env.schema.json --file .env
    
    # Generate .env.example
    envschema generate .env.schema.json
    
    Downloads