From 5ad0b2dd688565df7453fb77d23d5830300adc51 Mon Sep 17 00:00:00 2001 From: Isaac Bythewood Date: Sat, 11 Feb 2017 04:15:08 +0000 Subject: [PATCH] Swap over to suggesting the use of .venv instead of the home dir for virtualenv --- .gitignore | 1 + README.rst | 7 ++++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 4fafe6c..30add79 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,7 @@ /*.egg-info/ /pip-log.txt /venv/ +/.venv/ # Buildout /eggs/ diff --git a/README.rst b/README.rst index 7fb2940..0ee3ffe 100644 --- a/README.rst +++ b/README.rst @@ -36,9 +36,10 @@ recommend using our tags/versions though. To run Pinry's tests inside the Pinry repo run:: - virtualenv . - bin/pip install -r requirements.txt - bin/python manage.py test + virtualenv .venv + source .venv/bin/activate + pip install -r requirements.txt + python manage.py test Production Deployment