docs: update development instructions to include directory change and… (#937)

This commit is contained in:
Oliver Haas 2025-01-31 23:21:08 +01:00 committed by GitHub
parent 3d187d7aba
commit bfd917fa20
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,6 +10,7 @@ This makes a copy of the repository in your own name. Now you can clone this rep
```sh
git clone https://github.com/<your GitHub username>/django-components.git
cd django-components
```
To quickly run the tests install the local dependencies by running:
@ -18,6 +19,12 @@ To quickly run the tests install the local dependencies by running:
pip install -r requirements-dev.txt
```
You also have to install this local django-components version, initially and after every change you want to test:
```sh
pip install .
```
Now you can run the tests to make sure everything works as expected:
```sh