syndicate-py/.envrc

9 lines
135 B
Plaintext
Raw Permalink Normal View History

if ! [ -d .venv ]
then
2024-05-06 10:29:36 +00:00
python3 -m venv .venv
. .venv/bin/activate
pip install -e '.[dev]'
else
. .venv/bin/activate
fi