CONTRIBUTING.rst 7.9 KB
Newer Older
1
############################
2
Contributing to Open edX
3 4
############################

5
Contributions to Open edX are very welcome, and strongly encouraged! We've
6 7
put together `some documentation that describes our contribution process`_,
but here's a step-by-step guide that should help you get started.
8

9
.. _some documentation that describes our contribution process: http://edx.readthedocs.org/projects/userdocs/en/latest/process/overview.html
10

11 12
Step 0: Join the Conversation
=============================
13

David Baumgold committed
14
Got an idea for how to improve the codebase? Fantastic, we'd love to hear about
15
it! Before you dive in and spend a lot of time and effort making a pull request,
David Baumgold committed
16
it's a good idea to discuss your idea with other interested developers. You may
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
get some valuable feedback that changes how you think about your idea, or you
may find other developers who have the same idea and want to work together.

For real-time conversation, we use `IRC`_: we all hang out in the
`#edx-code channel on Freenode`_. Come join us! The channel tends to be most
active Monday through Friday between 13:00 and 21:00 UTC
(9am to 5pm US Eastern time), but interesting conversations can happen
at any time.

.. _IRC: http://www.irchelp.org/
.. _#edx-code channel on Freenode: http://webchat.freenode.net/?channels=edx-code

For asynchronous conversation, we have several mailing lists on Google Groups:

* `openedx-ops`_: everything related to *running* Open edX. This includes
  installation issues, server management, cost analysis, and so on.
* `openedx-translation`_: everything related to *translating* Open edX into
  other languages. This includes volunteer translators, our internationalization
  infrastructure, issues related to Transifex, and so on.
36
* `openedx-analytics`_: everything related to *analytics* in Open edX.
37 38 39 40 41
* `edx-code`_: everything related to the *code* in Open edX. This includes
  feature requests, idea proposals, refactorings, and so on.

.. _openedx-ops: https://groups.google.com/forum/#!forum/openedx-ops
.. _openedx-translation: https://groups.google.com/forum/#!forum/openedx-translation
42
.. _openedx-analytics: https://groups.google.com/forum/#!forum/openedx-analytics
43 44 45 46 47 48 49 50 51
.. _edx-code: https://groups.google.com/forum/#!forum/edx-code

Step 1: Sign a Contribution Agreement
=====================================

Before edX can accept any code contributions from you, you'll need to sign
the `individual contributor agreement`_ and send it in. This confirms
that you have the authority to contribute the code in the pull request and
ensures that edX can relicense it.
52 53 54 55 56

You should print out the agreement and sign it. Then scan (or photograph) the
signed agreement and email it to the email address indicated on the agreement.
Alternatively, you're also free to physically mail the agreement to the street
address on the agreement. Once we have your agreement in hand, we can begin
57
reviewing and merging your work.
58 59 60 61 62 63 64 65 66

You'll also need to add yourself to the `AUTHORS` file when you submit your
first pull request.  You should add your full name as well as the email address
associated with your Github account.  Please update `AUTHORS` in an individual
commit, distinct from other changes in the pull request (it's OK for a pull
request to contain multiple commits, including a commit to `AUTHORS`).
Alternatively, you can open up a separate PR just to have your name added to
the `AUTHORS` file, and link that PR to the PR with your changes.

67 68 69 70 71 72 73
Step 2: Fork, Commit, and Pull Request
======================================
Github has some great documentation on `how to fork a git repository`_. Once
you've done that, make your changes and `send us a pull request`_! Be sure to
include a detailed description for your pull request, so that a community
manager can understand *what* change you're making, *why* you're making it, *how*
it should work now, and how you can *test* that it's working correctly.
74

75 76
.. _how to fork a git repository: https://help.github.com/articles/fork-a-repo
.. _send us a pull request: https://help.github.com/articles/creating-a-pull-request
77

78 79
Step 3: Meet PR Requirements
============================
80

81 82 83 84
Our `contributor documentation`_ includes a long list of requirements that pull
requests must meet in order to be reviewed by a core committer. These requirements
include things like documentation and passing tests: see the
`contributor documentation`_ page for the full list.
85

86
.. _contributor documentation: http://edx.readthedocs.org/projects/userdocs/en/latest/process/contributor.html
87

88 89
Step 4: Approval by Community Manager and Product Owner
=======================================================
90

91 92 93 94 95 96
A community manager will read the description of your pull request. If the
description is understandable, the community manager will send the pull request
to a product owner. The product owner will evaluate if the pull request is a
good idea for Open edX, and if not, your pull request will be rejected. This
is another good reason why you should discuss your ideas with other members
of the community before working on a pull request!
97

98 99
Step 5: Code Review by Core Committer(s)
========================================
100

101 102 103 104 105
If your pull request meets the requirements listed in the
`contributor documentation`_, and it hasn't been rejected by a product owner,
then it will be scheduled for code review by one or more core committers. This
process sometimes takes awhile: currently, all core committers on the project
are employees of edX, and they have to balance their time between code review
106 107 108 109
and new development. Please also read our `code ownership page`_, which
lists areas and concepts in the codebase that are "owned" by certain developers.
If your change touches one of these areas or concepts, that developer should be
one of the reviewers.
110

111 112 113 114 115
Once the code review process has started, please be responsive to comments on
the pull request, so we can keep the review process moving forward.
If you are unable to respond for a few days, that's fine, but
please add a comment informing us of that -- otherwise, it looks like you're
abandoning your work!
116

117 118
.. _code ownership page: https://github.com/edx/edx-platform/wiki/Code-Ownership

119 120
Step 6: Merge!
==============
121

122 123 124
Once the core committers are satisfied that your pull request is ready to go,
one of them will merge it for you. Your code will end up on the edX production
servers in the next release, which usually which happens every week. Congrats!
125 126 127 128


===========================
Expectations We Have of You
129
===========================
130 131 132

By opening up a pull request, we expect the following things:

133 134
1. You've read and understand the instructions in this contributing file and
   the contribution process documentation.
135 136 137 138 139 140 141

2. You are ready to engage with the edX community. Engaging means you will be
   prompt in following up with review comments and critiques. Do not open up a
   pull request right before a vacation or heavy workload that will render you
   unable to participate in the review process.

3. If you have questions, you will ask them by either commenting on the pull
142
   request or asking us in IRC or on the mailing list.
143 144 145 146

4. If you do not respond to comments on your pull request within 7 days, we
   will close it. You are welcome to re-open it when you are ready to engage.

147
=========================
148
Expections You Have of Us
149
=========================
150

151 152 153 154
1. Within a week of opening up a pull request, one of our community managers
   will triage it, starting the documented contribution process. (Please
   give us a little extra time if you open the PR on a weekend or
   around a US holiday! We may take a little longer getting to it.)
155 156

2. We promise to engage in an active dialogue with you from the time we begin
157
   reviewing until either the PR is merged (by a core committer), or we
158 159 160 161 162 163
   decide that, for whatever reason, it should be closed.

3. Once we have determined through visual review that your code is not
   malicious, we will run a Jenkins build on your branch.

.. _individual contributor agreement: http://code.edx.org/individual-contributor-agreement.pdf
164