autoenv automatically executes code when you cd into a directory with a .env file. You can use it to automatically activate a project's virtual environment.
Based on the "Environment Management" category.
Alternatively, view Autoenv alternatives based on common mentions on social networks and blogs.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Autoenv or a related project?
Magic per-project shell environments
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...
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.
Follow the white rabbit:
$ echo "echo 'whoa'" > project/.env
$ cd project
whoa
Mind blown GIF
Install it easily:
$ brew install autoenv
$ echo "source $(brew --prefix autoenv)/activate.sh" >> ~/.bash_profile
$ git clone https://github.com/hyperupcall/autoenv ~/.autoenv
$ echo "source ~/.autoenv/activate.sh" >> ~/.bashrc
Download the @hyperupcall/autoenv package
$ npm install -g '@hyperupcall/autoenv'
$ echo "source \"\$(npm root -g)/@hyperupcall/autoenv/activate.sh\"" >> ~/.bashrc
Before sourcing activate.sh, you can set the following variables:
AUTOENV_AUTH_FILE: Authorized env files, defaults to
~/.autoenv_authorized if it exists; otherwise, ~/.local/state/autoenv/authorized_listAUTOENV_ENV_FILENAME: Name of the .env file, defaults to .envAUTOENV_LOWER_FIRST: Set this variable to a non-empty string to flip the order of .env
files executedAUTOENV_ENV_LEAVE_FILENAME: Name of the .env.leave file,
defaults to .env.leaveAUTOENV_ENABLE_LEAVE: Set this to a non-empty string in order to
enable source env when leavingAUTOENV_ASSUME_YES: Set this variable to a non-empty string to silently authorize the
initialization of new environmentsAUTOENV_VIEWER: Program used to display env files prior to authorization.
Default: "less -N".autoenv is tested on:
direnv is an excellent alternative to autoenv, and includes the ability to unset environment variables as well. It also supports the Fish terminal.
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).
Autoenv was originally created by @kennethreitz. Later, ownership was transfered to @inishchith. As of August 22nd, 2021, Edwin Kofler (@hyperupcall) owns and maintains the project
Do not miss the trending, packages, news and articles with our weekly report.