From d10a81a880d41354bc71dea15d9a464c0c57b206 Mon Sep 17 00:00:00 2001 From: Sean Heckathorne Date: Wed, 29 May 2024 10:39:12 -0500 Subject: [PATCH] fix requirements_dev.txt path in docs (#719) Edited shell command for installing reuquirements_dev.txt to point to its location within the server directory --- docs/guide/src/development/local-development.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/src/development/local-development.md b/docs/guide/src/development/local-development.md index 136228f9..3fc207cb 100644 --- a/docs/guide/src/development/local-development.md +++ b/docs/guide/src/development/local-development.md @@ -101,7 +101,7 @@ style guide. Most popular IDEs have a plugin to support these configs. - pre-commit - [pre-commit](https://pre-commit.com/) hooks are set to run a number of linting and formatting checks before commits on any branch is accepted. ```shell - pip install -r requirements_dev.txt + pip install -r server/requirements_dev.txt pre-commit install ``` - .editorconfig