Metadata-Version: 2.4
Name: envmerge
Version: 0.1.0
Summary: Deterministically sync .env files from .env.example
Author: iosif2
License: MIT
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# envmerge

`envmerge` syncs `.env` from `.env.example` with predictable ordering and minimal drift.

## Install

```bash
uv sync --group dev
uv run envmerge --help
```

## Commands

```bash
uv run envmerge sync
uv run envmerge sync --dry-run
uv run envmerge check
uv run envmerge diff --format=json
```

## Development

```bash
pre-commit install
uv run pytest
pre-commit run --all-files
```
