2011-05-27 18:49:47 +08:00
|
|
|
============
|
|
|
|
Writing code
|
|
|
|
============
|
|
|
|
|
2021-03-03 18:24:56 +08:00
|
|
|
So you'd like to write some code to improve Django? Awesome! There are several
|
|
|
|
ways you can help Django's development:
|
|
|
|
|
|
|
|
* :doc:`Report bugs <../bugs-and-features>` in our `ticket tracker`_.
|
|
|
|
|
|
|
|
* Join the |django-developers| mailing list and share your ideas for how to
|
|
|
|
improve Django. We're always open to suggestions. You can also interact on
|
|
|
|
the `Django forum`_ and the `#django-dev IRC channel`_.
|
|
|
|
|
|
|
|
* :doc:`Submit patches <submitting-patches>` for new and/or fixed behavior. If
|
|
|
|
you're looking for a way to get started contributing to Django read the
|
|
|
|
:doc:`/intro/contributing` tutorial and have a look at the `easy pickings`_
|
|
|
|
tickets. The :ref:`patch-review-checklist` will also be helpful.
|
|
|
|
|
|
|
|
* :doc:`Improve the documentation <../writing-documentation>` or :doc:`write
|
|
|
|
unit tests <unit-tests>`.
|
|
|
|
|
|
|
|
* :doc:`Triage tickets and review patches <../triaging-tickets>` created by
|
|
|
|
other users.
|
|
|
|
|
|
|
|
* Read the :doc:`../new-contributors` to help you get orientated in the
|
|
|
|
development process.
|
|
|
|
|
|
|
|
Browse the following sections to find out how to give your code patches the
|
|
|
|
best chances to be included in Django core:
|
2011-05-27 18:49:47 +08:00
|
|
|
|
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 1
|
|
|
|
|
|
|
|
coding-style
|
|
|
|
unit-tests
|
|
|
|
submitting-patches
|
2012-06-08 00:48:29 +08:00
|
|
|
working-with-git
|
2015-04-28 12:12:31 +08:00
|
|
|
javascript
|
2021-03-03 18:24:56 +08:00
|
|
|
|
|
|
|
.. _ticket tracker: https://code.djangoproject.com/
|
|
|
|
.. _easy pickings: https://code.djangoproject.com/query?status=!closed&easy=1
|
2021-06-03 18:07:30 +08:00
|
|
|
.. _#django-dev IRC channel: https://web.libera.chat/#django-dev
|
2021-03-03 18:24:56 +08:00
|
|
|
.. _Django forum: https://forum.djangoproject.com/
|