From 3872dbe84043b7976352f6e589d55caeeadc82ee Mon Sep 17 00:00:00 2001 From: "Campbell, Justin" Date: Wed, 4 Nov 2020 12:36:36 -0500 Subject: [PATCH] Add venv:freeze docs --- Dev Environment Setup Guide.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dev Environment Setup Guide.md b/Dev Environment Setup Guide.md index e80c78b..03ed436 100644 --- a/Dev Environment Setup Guide.md +++ b/Dev Environment Setup Guide.md @@ -252,4 +252,5 @@ All of the tools in this project are accessible as an npm task so you can intera | `kill:api` | Kills the runaway API process(es). | | `venv:create` | This will create a virtual environment in `/api/venv` and install requirements from `/api/requirements.txt`. | | `venv:delete` | This will delete the folder `/api/venv`. | -| `venv:reset` | This will run `venv:delete` then `venv:create`. | \ No newline at end of file +| `venv:reset` | This will run `venv:delete` then `venv:create`. | +| `venv:freeze` | Regenerates the API requirements.txt file and mitigates [this pip bug](https://github.com/pypa/pip/issues/4022). |