2
0

index.txt 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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. .. _#django-dev IRC channel: https://web.libera.chat/#django-dev
  39. .. _community page: https://www.djangoproject.com/community/
  40. .. _Django Discord server: https://discord.gg/xcRH6mN4fa
  41. .. _Django forum: https://forum.djangoproject.com/
  42. .. _register it here: https://www.djangoproject.com/community/add/blogs/
  43. Getting started
  44. ===============
  45. Django encourages and welcomes new contributors, and makes an effort to help
  46. them become experienced, confident contributors to Open Source Software (OSS).
  47. Our documentation contains guidance for first-time contributors, including:
  48. .. toctree::
  49. :maxdepth: 1
  50. An overview of the contributing process and what's involved. <new-contributors>
  51. Work on the Django framework
  52. ============================
  53. If you enjoy working *with* Django, wait until you start working *on* it.
  54. Really, **anyone** can do something to improve Django, which will improve the
  55. experience of lots of people!
  56. The work on Django itself falls into three major areas:
  57. Contributing code
  58. -----------------
  59. Fix a bug, or add a new feature. You can make a pull request and see **your
  60. code** in the next version of Django.
  61. .. toctree::
  62. :maxdepth: 2
  63. writing-code/index
  64. Contributing documentation
  65. --------------------------
  66. Django's documentation is one of its key strengths. It's informative and
  67. thorough. You can help to improve the documentation and keep it relevant as the
  68. framework evolves.
  69. .. toctree::
  70. :maxdepth: 2
  71. writing-documentation
  72. Localizing Django
  73. -----------------
  74. Django is translated into over 100 languages - There's even some translation
  75. for Klingon?! The i18n team is always looking for translators to help maintain
  76. and increase language reach.
  77. .. toctree::
  78. :maxdepth: 2
  79. localizing
  80. Other ways of contributing
  81. ==========================
  82. Explore additional avenues of contributing to Django beyond coding. Django's
  83. `ticket tracker`_ is the central hub for managing issues, improvements, and
  84. contributions to Django. It's a valuable resource where you can report bugs you
  85. encounter or assist in triaging existing tickets to ensure a smooth development
  86. workflow. Explore the ways you can make a difference below, and join us in
  87. making Django better for everyone.
  88. .. toctree::
  89. :maxdepth: 2
  90. bugs-and-features
  91. triaging-tickets
  92. .. _ticket tracker: https://code.djangoproject.com/
  93. We're looking forward to working with you. Welcome aboard!