autoenv

Directory-based environments.

Github星跟蹤圖

Autoenv: Directory-based Environments Build Status

Magic per-project shell environments. Very pretentious.

Note: you should probably use direnv instead.
Simply put, it is higher quality software. But, autoenv is still great,
too. Maybe try both? :)

This image sums up the relationship between the two projects, very well:

image

What is it?

If a directory contains a .env file, it will automatically be executed
when you cd into it. When enabled (set AUTOENV_ENABLE_LEAVE to a
non-null string), if a directory contains a .env.leave file, it will
automatically be executed when you leave it.

This is great for...

  • auto-activating virtualenvs
  • auto-deactivating virtualenvs
  • project-specific environment variables
  • making millions

You can also nest envs within each other. How awesome is that!?

When executing, autoenv, will walk up the directories until the mount
point and execute all .env files beginning at the top.

Usage

Follow the white rabbit:

$ echo "echo 'whoa'" > project/.env
$ cd project
whoa

image

Install

Install it easily:

Mac OS X Using Homebrew

$ brew install autoenv
$ echo "source $(brew --prefix autoenv)/activate.sh" >> ~/.bash_profile

Using pip

$ pip install autoenv
$ echo "source `which activate.sh`" >> ~/.bashrc

Using git

$ git clone git://github.com/inishchith/autoenv.git ~/.autoenv
$ echo 'source ~/.autoenv/activate.sh' >> ~/.bashrc

Using AUR

Arch Linux users can install
autoenv or
autoenv-git with
their favorite AUR helper.

You need to source activate.sh in your bashrc afterwards:

$ echo 'source /usr/share/autoenv/activate.sh' >> ~/.bashrc

Configuration

Before sourcing activate.sh, you can set the following variables:

  • AUTOENV_AUTH_FILE: Authorized env files, defaults to
    ~/.autoenv_authorized
  • AUTOENV_ENV_FILENAME: Name of the .env file, defaults to .env
  • AUTOENV_LOWER_FIRST: Set this variable to flip the order of .env
    files executed
  • AUTOENV_ENV_LEAVE_FILENAME: Name of the .env.leave file,
    defaults to .env.leave
  • AUTOENV_ENABLE_LEAVE: Set this to a non-null string in order to
    enable source env when leaving
  • AUTOENV_ASSUME_YES: Set this variable to silently authorize the
    initialization of new environments

Shells

autoenv is tested on:

  • bash
  • zsh
  • dash
  • fish is supported by
    autoenv_fish
  • more to come

Alternatives

Direnv is an excellent alternative to autoenv, and includes the ability
to unset environment variables as well. It also supports the fish
terminal.

https://direnv.net

Disclaimer

Autoenv overrides cd. If you already do this, invoke autoenv_init
within your custom cd after sourcing activate.sh.

Autoenv can be disabled via unset cd if you experience I/O issues with
certain file systems, particularly those that are FUSE-based (such as
smbnetfs).

Attributions

autoenv is one of @kennethreitz:org project and is now owned and maintained by @inishchith.

主要指標

概覽
名稱與所有者hyperupcall/autoenv
主編程語言Shell
編程語言Makefile (語言數: 2)
平台
許可證MIT License
所有者活动
創建於2012-02-12 10:41:55
推送於2025-04-12 16:38:24
最后一次提交2025-04-12 09:37:55
發布數6
最新版本名稱v0.4.0 (發布於 2025-04-08 00:50:22)
第一版名稱v0.0.1 (發布於 )
用户参与
星數5.8k
關注者數71
派生數262
提交數328
已啟用問題?
問題數129
打開的問題數6
拉請求數84
打開的拉請求數0
關閉的拉請求數35
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?