Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 1.2 KB

code.md

File metadata and controls

34 lines (23 loc) · 1.2 KB

???+ tip "Looking to contribute features that are not Django specific?"

Everything within the `django-idom` repository must be specific to Django integration. Check out the [IDOM Core documentation](https://idom-docs.herokuapp.com/docs/about/contributor-guide.html) to contribute general features such as: components, hooks, events, and more.

If you plan to make code changes to this repository, you'll need to install the following dependencies first:

Once done, you should clone this repository:

git clone https://github.com/idom-team/django-idom.git
cd django-idom

Then, by running the command below you can:

  • Install an editable version of the Python code
  • Download, build, and install Javascript dependencies
pip install -e . -r requirements.txt

Finally, to verify that everything is working properly, you can manually run the development webserver.

cd tests
python manage.py runserver

Navigate to http://127.0.0.1:8000 to see if the tests are rendering correctly.