index.txt 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. ======================
  2. Contributing to Django
  3. ======================
  4. Django is a community that lives on its volunteers. As it keeps growing, we
  5. always need more people to help others. You can contribute in many ways, either
  6. on the framework itself or in the wider ecosystem.
  7. Communication channels
  8. ======================
  9. We're passionate about helping Django users make the jump to contributing
  10. members of the community. Communication is key - working on Django is being
  11. part of a conversation. Join it, to become familiar with what we're doing and
  12. how we talk about it. You'll be able to form relationships with more
  13. experienced contributors who are there to help guide you towards success.
  14. Join the Django community
  15. -------------------------
  16. There are several ways you can help the Django community and others to maintain
  17. a great ecosystem to work in:
  18. * Join the `Django forum`_. This forum is a place for discussing the Django
  19. framework and applications and projects that use it. This is also a good
  20. place to ask and answer any questions related to installing, using, or
  21. contributing to Django.
  22. * Join the |django-users| mailing list and answer questions. This
  23. mailing list has a huge audience, and we really want to maintain a
  24. friendly and helpful atmosphere. If you're new to the Django community,
  25. you should read the `posting guidelines`_.
  26. * Join the `Django Discord server`_ or the `#django IRC channel`_ on
  27. Libera.Chat to discuss and answer questions. By explaining Django to other
  28. users, you're going to learn a lot about the framework yourself.
  29. * Blog about Django. We syndicate all the Django blogs we know about on
  30. the `community page`_; if you'd like to see your blog on that page you
  31. can `register it here`_.
  32. * Contribute to open-source Django projects, write some documentation, or
  33. release your own code as an open-source pluggable application. The
  34. ecosystem of pluggable applications is a big strength of Django, help us
  35. build it!
  36. .. _posting guidelines: https://code.djangoproject.com/wiki/UsingTheMailingList
  37. .. _#django IRC channel: https://web.libera.chat/#django
  38. .. _community page: https://www.djangoproject.com/community/
  39. .. _Django Discord server: https://discord.gg/xcRH6mN4fa
  40. .. _Django forum: https://forum.djangoproject.com/
  41. .. _register it here: https://www.djangoproject.com/community/add/blogs/
  42. Getting started
  43. ===============
  44. Django encourages and welcomes new contributors, and makes an effort to help
  45. them become experienced, confident contributors to Open Source Software (OSS).
  46. Our documentation contains guidance for first-time contributors, including:
  47. .. toctree::
  48. :maxdepth: 1
  49. An overview of the contributing process and what's involved. <new-contributors>
  50. Work on the Django framework
  51. ============================
  52. If you enjoy working *with* Django, wait until you start working *on* it.
  53. Really, **anyone** can do something to improve Django, which will improve the
  54. experience of lots of people!
  55. The work on Django itself falls into three major areas:
  56. Contributing code
  57. -----------------
  58. Fix a bug, or add a new feature. You can make a pull request and see **your
  59. code** in the next version of Django.
  60. .. toctree::
  61. :maxdepth: 2
  62. writing-code/index
  63. Contributing documentation
  64. --------------------------
  65. Django's documentation is one of its key strengths. It's informative and
  66. thorough. You can help to improve the documentation and keep it relevant as the
  67. framework evolves.
  68. .. toctree::
  69. :maxdepth: 2
  70. writing-documentation
  71. Localizing Django
  72. -----------------
  73. Django is translated into over 100 languages - There's even some translation
  74. for Klingon?! The i18n team is always looking for translators to help maintain
  75. and increase language reach.
  76. .. toctree::
  77. :maxdepth: 2
  78. localizing
  79. Other ways of contributing
  80. ==========================
  81. Explore additional avenues of contributing to Django beyond coding. Django's
  82. `ticket tracker`_ is the central hub for managing issues, improvements, and
  83. contributions to Django. It's a valuable resource where you can report bugs you
  84. encounter or assist in triaging existing tickets to ensure a smooth development
  85. workflow. Explore the ways you can make a difference below, and join us in
  86. making Django better for everyone.
  87. .. toctree::
  88. :maxdepth: 2
  89. bugs-and-features
  90. triaging-tickets
  91. .. _ticket tracker: https://code.djangoproject.com/
  92. We're looking forward to working with you. Welcome aboard!