Create a local .envrc to store private stuff

This commit is contained in:
Howard Abrams 2026-06-13 21:01:13 -07:00
parent dfa6959843
commit a128a78024

5
.envrc
View file

@ -10,6 +10,11 @@ if [ -f ".python-version" ] ; then
echo "Activating $(python -V) virtualenv"
source .venv/bin/activate
fi
# announce python version and show the path of the current python in ${PATH}
echo "Virtualenv has been activated for $(python -V)"
echo "$(which python)"
if [ -f .envrc.local ]; then
source_env .envrc.local
fi