Minor enhancement to indicate how to get hrlpdesk setup for development

This commit is contained in:
Christopher Broderick 2023-07-23 06:23:06 +01:00
parent f7381d5b62
commit f1e1d52cd2

View File

@ -51,7 +51,7 @@ Installation
`django-helpdesk` requires:
* Python 3.8+
* Django 3.2 LTS highly recommended (early adopters may test Django 4)
* Django 3.2 LTS or Django 4.*
You can quickly install the latest stable version of `django-helpdesk`
app via `pip`::
@ -72,6 +72,9 @@ 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::
git clone https://github.com/django-helpdesk/django-helpdesk.git
- install a virtual environment
- using virtualenv from the helpdesk base folder do::
virtualenv .venv && source .venv/bin/activate
@ -79,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
To reactivate a VENV just run:
source .venv/bin/activate
To see option for the Makefile run: `make`
The project enforces a standardized formatting in the CI/CD pipeline. To ensure you have the correct formatting run::