From 4387fe82bb92a219aec03d669253adab8fa02014 Mon Sep 17 00:00:00 2001 From: Hasan Ramezani Date: Sun, 26 Jan 2020 19:49:21 +0100 Subject: [PATCH] Add how to install requirements on different stages to Workflow for layered requirements section. Fix #1043 --- README.rst | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.rst b/README.rst index adde47078..68249eb72 100644 --- a/README.rst +++ b/README.rst @@ -291,6 +291,19 @@ dev requirements only include a ``2.1`` version of Django because they were constrained. Now both compiled requirements files can be installed safely in the dev environment. +To install requirements in production stage use: + +.. code-block:: bash + + $ pip-sync + +You can install requirements in development stage by: + +.. code-block:: bash + + $ pip-sync requirements.txt dev-requirements.txt + + Example usage for ``pip-sync`` ==============================