index.txt 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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 Discord server`_ to discuss and answer questions. By
  23. explaining Django to other users, you're going to learn a lot about the
  24. framework yourself.
  25. * Blog about Django. We syndicate all the Django blogs we know about on
  26. the `community page`_; if you'd like to see your blog on that page you
  27. can `register it here`_.
  28. * Contribute to open-source Django projects, write some documentation, or
  29. release your own code as an open-source pluggable application. The
  30. ecosystem of pluggable applications is a big strength of Django, help us
  31. build it!
  32. .. _community page: https://www.djangoproject.com/community/
  33. .. _Django Discord server: https://chat.djangoproject.com
  34. .. _Django Forum: https://forum.djangoproject.com/
  35. .. _register it here: https://www.djangoproject.com/community/add/blogs/
  36. Getting started
  37. ===============
  38. Django encourages and welcomes new contributors, and makes an effort to help
  39. them become experienced, confident contributors to Open Source Software (OSS).
  40. Our documentation contains guidance for first-time contributors, including:
  41. .. toctree::
  42. :maxdepth: 1
  43. An overview of the contributing process and what's involved. <new-contributors>
  44. Work on the Django framework
  45. ============================
  46. If you enjoy working *with* Django, wait until you start working *on* it.
  47. Really, **anyone** can do something to improve Django, which will improve the
  48. experience of lots of people!
  49. The work on Django itself falls into three major areas:
  50. Contributing code
  51. -----------------
  52. Fix a bug, or add a new feature. You can make a pull request and see **your
  53. code** in the next version of Django.
  54. .. toctree::
  55. :maxdepth: 2
  56. writing-code/index
  57. Contributing documentation
  58. --------------------------
  59. Django's documentation is one of its key strengths. It's informative and
  60. thorough. You can help to improve the documentation and keep it relevant as the
  61. framework evolves.
  62. .. toctree::
  63. :maxdepth: 2
  64. writing-documentation
  65. Localizing Django
  66. -----------------
  67. Django is translated into over 100 languages - There's even some translation
  68. for Klingon?! The i18n team is always looking for translators to help maintain
  69. and increase language reach.
  70. .. toctree::
  71. :maxdepth: 2
  72. localizing
  73. Other ways of contributing
  74. ==========================
  75. Explore additional avenues of contributing to Django beyond coding. Django's
  76. `ticket tracker`_ is the central hub for managing issues, improvements, and
  77. contributions to Django. It's a valuable resource where you can report bugs you
  78. encounter or assist in triaging existing tickets to ensure a smooth development
  79. workflow. Explore the ways you can make a difference below, and join us in
  80. making Django better for everyone.
  81. .. toctree::
  82. :maxdepth: 2
  83. bugs-and-features
  84. triaging-tickets
  85. .. _ticket tracker: https://code.djangoproject.com/
  86. We're looking forward to working with you. Welcome aboard!