doc(development): small updates to backend development intro

This commit is contained in:
Kevin Turner 2023-08-21 16:38:47 -07:00
parent 88963dbe6e
commit 3039f92e69

View File

@ -35,18 +35,17 @@ access.
## Backend ## Backend
The backend is contained within the `./invokeai/backend` folder structure. To The backend is contained within the `./invokeai/backend` and `./invokeai/app` directories.
get started however please install the development dependencies. To get started please install the development dependencies.
From the root of the repository run the following command. Note the use of `"`. From the root of the repository run the following command. Note the use of `"`.
```zsh ```zsh
pip install ".[test]" pip install ".[dev,test]"
``` ```
This in an optional group of packages which is defined within the These are optional groups of packages which are defined within the `pyproject.toml`
`pyproject.toml` and will be required for testing the changes you make the the and will be required for testing the changes you make to the code.
code.
### Running Tests ### Running Tests