From 1f5ea80d0cff3f3cbc410162508bf70b2ac5940e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9rgio?= 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 9e29ee7..7e34951 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