# more info at https://direnv.net/man/direnv-stdlib.1.html
source_env_if_exists ../.envrc
dotenv_if_exists .env

if [ -d .venv ]; then
	export VIRTUAL_ENV=$PWD/.venv
	export PATH=$PWD/.venv/bin:$PATH
fi
