Skip to main content

Like direnv, but works with both .envrc and .env files

Project description

dirdotenv

Like direnv, but works with both .envrc and .env files.

Features

  • ✅ Supports .env files with the format KEY=value
  • ✅ Supports .envrc files with the format export KEY=value
  • ✅ Works with single quotes, double quotes, or no quotes
  • ✅ Supports comments (lines starting with #)
  • ✅ Can export environment variables for your shell
  • ✅ Can execute commands with loaded environment variables
  • ✅ Shell integration for automatic loading (like direnv)
  • ✅ Works with uvx for quick execution without installation
  • ✅ Supports Bash, Zsh, Fish, and PowerShell

Installation

Using pip

pip install dirdotenv

Then update your .bashrc or equivalent:

eval "$(dirdotenv hook bash)"

See Shell Integration for more examples

Development

When developing:

git clone git@github.com:alexeygrigorev/dirdotenv.git
cd dirdotenv
uv sync

# assuming you cloned to ~/git/dirdotenv/
alias dirdotenv="uv run --project ~/git/dirdotenv/ python -m dirdotenv"
eval "$(dirdotenv hook bash)"

Using uvx

# Run without installation
eval "$(uvx dirdotenv hook bash)"

Usage

Show help

# Display usage information
dirdotenv
dirdotenv --help

Load environment variables from current directory

# Output export commands for your shell (use --export to prevent accidental exposure)
eval "$(dirdotenv --export)"

Load environment variables from a specific directory

eval "$(dirdotenv /path/to/directory --export)"

Specify shell format

# For bash/zsh (default)
eval "$(dirdotenv --export --shell bash)"

# For fish shell
dirdotenv --export --shell fish | source

# For PowerShell
Invoke-Expression (dirdotenv --export --shell powershell)

Execute a command with loaded environment variables

# Run a command with the environment variables loaded
dirdotenv --exec python script.py
dirdotenv --exec node app.js

Shell Integration

For automatic loading of environment variables when you enter a directory (like direnv), use the hook command:

Bash

Add to your ~/.bashrc:

eval "$(dirdotenv hook bash)"

Zsh

Add to your ~/.zshrc:

eval "$(dirdotenv hook zsh)"

Fish

Add to your ~/.config/fish/config.fish:

dirdotenv hook fish | source

PowerShell

Add to your PowerShell profile (run notepad $PROFILE):

Invoke-Expression (dirdotenv hook powershell)

How Shell Integration Works

Once configured, the shell integration provides direnv-like behavior:

  1. Entering a directory: When you cd into a directory with .env or .envrc files, the variables are automatically loaded and displayed with a + prefix

    $ cd myproject
    dirdotenv: +API_KEY +DATABASE_URL +PORT
    
  2. Subdirectory inheritance: Child directories inherit variables from parent directories but can override them

    myproject/
      .env          # API_KEY=parent_value
      backend/
        .env        # API_KEY=child_value, DB_HOST=localhost
    
    $ cd myproject
    dirdotenv: +API_KEY
    
    $ cd backend
    dirdotenv: +API_KEY +DB_HOST  # API_KEY is overridden, DB_HOST is new
    
  3. Leaving a directory: When you leave a directory tree, variables that were set are automatically unloaded and displayed with a - prefix

    $ cd ..  # leaving myproject tree
    dirdotenv: -API_KEY -DATABASE_URL -PORT
    

File Format Examples

.env file

OPENAI_API_KEY='my-key'
DATABASE_URL="postgres://localhost/mydb"
API_PORT=8080

# This is a comment
DEBUG=true

.envrc file

export OPENAI_API_KEY='my-key'
export DATABASE_URL="postgres://localhost/mydb"
export API_PORT=8080

# This is a comment
export DEBUG=true

Priority

When both .env and .envrc files exist in the same directory:

  1. Variables from .envrc are loaded first
  2. Variables from .env override any duplicate keys from .envrc

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dirdotenv-0.0.1.tar.gz (93.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dirdotenv-0.0.1-py3-none-any.whl (10.9 kB view details)

Uploaded Python 3

File details

Details for the file dirdotenv-0.0.1.tar.gz.

File metadata

  • Download URL: dirdotenv-0.0.1.tar.gz
  • Upload date:
  • Size: 93.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Hatch/1.16.2 cpython/3.13.5 HTTPX/0.28.1

File hashes

Hashes for dirdotenv-0.0.1.tar.gz
Algorithm Hash digest
SHA256 f418d6228e28bd33837a2ef3c469e4973e1a70b3674dc8417c118c7963f2b17f
MD5 02c1ef4c59db9f3d113f9895d8d76fad
BLAKE2b-256 1aefd2fcc5ba32d45ff230f34f8ffad36ef4cab05c9066e3438e8577aa9ab2bf

See more details on using hashes here.

File details

Details for the file dirdotenv-0.0.1-py3-none-any.whl.

File metadata

  • Download URL: dirdotenv-0.0.1-py3-none-any.whl
  • Upload date:
  • Size: 10.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Hatch/1.16.2 cpython/3.13.5 HTTPX/0.28.1

File hashes

Hashes for dirdotenv-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b8314501d456094d6ef35b05b9f50454aebb59e688755d01268f045b5a90a523
MD5 6f78f649b841477f716d652818d4ed9d
BLAKE2b-256 a4a09108aabacb66d201a901340e55570f9b5245b9b49afbcfed1a13db8de0a1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page