From 1f5ea80d0cff3f3cbc410162508bf70b2ac5940e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=A9rgio?= <smaisidoro@gmail.com>
Date: Tue, 12 Nov 2019 21:48:36 +0200
Subject: [PATCH] Adds pipenv shell to docs

It might be confusing for beginners following the docs if the `pipenv shell` is not there
---
 {{cookiecutter.app_name}}/README.rst | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/{{cookiecutter.app_name}}/README.rst b/{{cookiecutter.app_name}}/README.rst
index 9e29ee74..7e349515 100644
--- a/{{cookiecutter.app_name}}/README.rst
+++ b/{{cookiecutter.app_name}}/README.rst
@@ -14,6 +14,7 @@ Run the following commands to bootstrap your environment ::
     cd {{cookiecutter.app_name}}
     {%- if cookiecutter.use_pipenv == "yes" %}
     pipenv install --dev
+    pipenv shell
     {%- else %}
     pip install -r requirements/dev.txt
     {%- endif %}
@@ -191,4 +192,4 @@ Deployment by using `Heroku CLI <https://devcenter.heroku.com/articles/heroku-cl
 
     git push heroku master
 
-{%- endif %}
\ No newline at end of file
+{%- endif %}
-- 
GitLab