Code
Overview¶
You will need to set up a Python environment to develop ReactPy-Django.
Note
Looking to contribute features that are not Django specific?
Everything within the reactpy-django
repository must be specific to Django integration. Check out the ReactPy Core documentation to contribute general features such as components, hooks, and events.
Creating an environment¶
If you plan to make code changes to this repository, you will need to install the following dependencies first:
Once done, you should clone this repository:
git clone https://github.com/reactive-python/reactpy-django.git
cd reactpy-django
Then, by running the command below you can install the dependencies needed to run the ReactPy-Django development environment.
pip install -r requirements.txt --upgrade --verbose
Pitfall
Some of our development dependencies require a C++ compiler, which is not installed by default on Windows. If you receive errors related to this during installation, follow the instructions in your console errors.
Additionally, be aware that ReactPy-Django's JavaScript bundle is built within the following scenarios:
- When
pip install
is run on thereactpy-django
package. - Every time
python manage.py ...
ornox ...
is run
Running the full test suite¶
Note
This repository uses Nox to run tests. For a full test of available scripts run nox -l
.
By running the command below you can run the full test suite:
nox -t test
Or, if you want to run the tests in the background:
nox -t test -- --headless
Running Django tests¶
If you want to only run our Django tests in your current environment, you can use the following command:
cd tests
python manage.py test
Running Django test web server¶
If you want to manually run the Django test application, you can use the following command:
cd tests
python manage.py runserver
Creating a pull request¶
Now, you can create/modify the ReactPy-Django source code, and Pull Request (PR) your changes to our GitHub repository.
To learn how to create GitHub PRs, click here.