Prevent environment variable drift with Pydantic schema validation, pre-commit hooks, and dotenvx encryption
Project description
envdrift
Prevent environment variable drift between dev, staging, and production.
The Problem
- A missing
DATABASE_URLin production causes a 3am outage - Staging has
NEW_FEATURE_FLAG=truebut production doesn't - "It works on my machine!" becomes your team's motto
The Solution
# Validate .env against Pydantic schema
envdrift validate .env --schema config.settings:Settings
# Compare dev vs prod
envdrift diff .env.development .env.production
# Check encryption status
envdrift encrypt .env.production --check
Installation
pip install envdrift
Quick Start
Define your schema:
from pydantic import Field
from pydantic_settings import BaseSettings, SettingsConfigDict
class Settings(BaseSettings):
model_config = SettingsConfigDict(extra="forbid")
DATABASE_URL: str = Field(json_schema_extra={"sensitive": True})
API_KEY: str = Field(json_schema_extra={"sensitive": True})
DEBUG: bool = False
Validate:
envdrift validate .env --schema config.settings:Settings
Features
| Feature | envdrift |
|---|---|
| Schema validation | Pydantic-based |
| Cross-env diff | Yes |
| Pre-commit hooks | Yes |
| Encryption (dotenvx, SOPS) | Yes |
| Vault integration | Azure, AWS, HashiCorp, GCP |
| CI/CD mode | Yes |
Documentation
Full documentation: jainal09.github.io/envdrift
Development
git clone https://github.com/jainal09/envdrift.git
cd envdrift
make dev
make test
make docs-serve
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
envdrift-4.2.1.tar.gz
(222.3 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
envdrift-4.2.1-py3-none-any.whl
(102.9 kB
view details)
File details
Details for the file envdrift-4.2.1.tar.gz.
File metadata
- Download URL: envdrift-4.2.1.tar.gz
- Upload date:
- Size: 222.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.21 {"installer":{"name":"uv","version":"0.9.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aab98fa6d84846b9d07b09b93ef8ad9736ea12039ec95a1453c2b826c7643e77
|
|
| MD5 |
74ace596ee7bd2da0c655db8367b2db9
|
|
| BLAKE2b-256 |
f3f7f69b5f25b18fb3b775f5ca0efd508d712a38944f8abfd71925bd287f99ef
|
File details
Details for the file envdrift-4.2.1-py3-none-any.whl.
File metadata
- Download URL: envdrift-4.2.1-py3-none-any.whl
- Upload date:
- Size: 102.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.21 {"installer":{"name":"uv","version":"0.9.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
923aec425844b42ad54b5c2de1d28d5562e1484682f0c61c72ef5ec05a29bf02
|
|
| MD5 |
a920e444e54b67fd6d6c83806d137d6d
|
|
| BLAKE2b-256 |
294fdda0a41d2eb90496bc5aa730f9a15fd8a5592d7f1658c75264d21cc541d3
|