Swap over to suggesting the use of .venv instead of the home dir for virtualenv

This commit is contained in:
Isaac Bythewood
2017-02-11 04:15:08 +00:00
parent 6c9723c506
commit 5ad0b2dd68
2 changed files with 5 additions and 3 deletions

1
.gitignore vendored
View File

@@ -11,6 +11,7 @@
/*.egg-info/
/pip-log.txt
/venv/
/.venv/
# Buildout
/eggs/

View File

@@ -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