Minor addition to documentation for developers

This commit is contained in:
Christopher Broderick 2023-10-10 13:45:30 +01:00
parent 7e7a38cc3c
commit 6fc7a8dd54

View File

@ -72,7 +72,7 @@ Developer Environment
---------------------
Follow these steps to set up your development environment to contribute to helpdesk:
- check out the helpdesk app to you local file system::
- check out the helpdesk app to your local file system::
git clone https://github.com/django-helpdesk/django-helpdesk.git
- install a virtual environment
@ -82,6 +82,9 @@ Follow these steps to set up your development environment to contribute to helpd
- install the requirements for development::
pip install -r requirements.txt -r requirements-dev.txt
- install the requirements for testing as well::
pip install -r requirements.txt -r requirements-dev.txt -r requirements-testing.txt
To reactivate a VENV just run:
source .venv/bin/activate