Created
December 3, 2015 11:25
-
-
Save diasjorge/0bdf30dcf6771e5d4edf to your computer and use it in GitHub Desktop.
Virtualenv and rvm integration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Automatically activate Git projects' virtual environments based on the | |
# directory name of the project. Virtual environment name can be overridden | |
# by placing a .venv file in the project root with a virtualenv name in it | |
function workon_cwd { | |
# Check that this is a Git repo | |
GIT_DIR=`git rev-parse --git-dir 2> /dev/null` | |
if [ $? == 0 ]; then | |
if [ $GIT_DIR == ".git" ]; then | |
PROJECT_ROOT=$PWD | |
else | |
PROJECT_ROOT=`dirname "$GIT_DIR"` | |
fi | |
ENV_NAME=`basename "$PROJECT_ROOT"` | |
if [ -f "$PROJECT_ROOT/.venv" ]; then | |
ENV_NAME=`cat "$PROJECT_ROOT/.venv"` | |
fi | |
# Activate the environment only if it is not already active | |
if [ "$VIRTUAL_ENV" != "$WORKON_HOME/$ENV_NAME" ]; then | |
if [ -e "$WORKON_HOME/$ENV_NAME/bin/activate" ]; then | |
workon "$ENV_NAME" -n && export CD_VIRTUAL_ENV="$ENV_NAME" | |
fi | |
fi | |
elif [ $CD_VIRTUAL_ENV ]; then | |
# We've just left the repo, deactivate the environment | |
# Note: this only happens if the virtualenv was activated automatically | |
deactivate && unset CD_VIRTUAL_ENV | |
fi | |
} | |
workon_cwd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment