Skip to content

Releases: gazzycodes/envcheck

envcheck v0.1.1 — pre-commit & CI integration

Choose a tag to compare

@gazzycodes gazzycodes released this 10 Jun 09:21

This release adds integration points so you can wire envcheck straight into your workflow.

pre-commit hook support: add envcheck to your .pre-commit-config.yaml and it runs on every commit. GitHub Actions usage is now documented in the README for CI.

The checker is unchanged from v0.1.0.

Install: pip install envcheck-sync

envcheck v0.1.0

Choose a tag to compare

@gazzycodes gazzycodes released this 10 Jun 08:12

First release of envcheck — keep your .env.example in sync with the environment variables your code actually uses.

envcheck statically scans your Python (it never imports or runs your code) for os.getenv / os.environ access, compares the result to your example env file, and reports variables used in code but missing from the example, plus any stale ones left over. Zero runtime dependencies, CI-friendly, Python 3.8+.

Install: pip install envcheck-sync