]> git.openstreetmap.org Git - rails.git/blob - CONTRIBUTING.md
Point potential contributors to the Roadmap
[rails.git] / CONTRIBUTING.md
1 # Contributing
2
3 This guide covers our development workflow, coding standards, and how to get your changes merged.
4
5 ## Table of Contents
6
7 1. [Getting Started](#getting-started)
8 2. [How to Contribute](#how-to-contribute)
9 3. [Code Quality Guidelines](#code-quality-guidelines)
10 4. [Submitting Changes](#submitting-changes)
11 5. [Localization (i18n)](#localization-i18n)
12 6. [Copyright Attribution](#copyright-attribution)
13
14 ## Getting Started
15
16 ### Useful Resources
17
18 * https://www.ruby-lang.org/ - The homepage of Ruby which has more links and some great tutorials.
19 * https://rubyonrails.org/ - The homepage of Rails, also has links and tutorials.
20
21 ### Finding Opportunities to Contribute
22
23 > [!NOTE]
24 > We don't assign issues to individual contributors. You are welcome to work on any issue, and there's no need to ask first.
25 > For more details see [our FAQ](FAQ.md)
26
27 We welcome the community to contribute to this repository in any form:
28
29 - **Documentation:** are the docs clear? Are they correct? Did you come across
30   any issues when trying to follow them? Could something be explained more
31   clearly?
32 - **Bug reporting:** something is broken on the website? Something doesn't work
33   as expected? Create an issue and give as much detail as possible, so that
34   others can understand the context, the conditions in which it happens,
35   and your use case. Or comment on an existing report if one already exists.
36 - **Bug triage:** we receive many issue reports. Can you take one and reproduce
37   it? Can you add more detail that could help others fix the issue more
38   easily? Or perhaps you think it's not really an issue and should be left
39   as is? Come to the issue tracker and let us know your thoughts.
40 - **Feature discussion:** is there a use case that is not covered? Is there
41   something that you wish that the website did, or did differently? Create
42   an issue to discuss it, or comment on an existing issue if it's already
43   being discussed. Try to express your use case in a way that helps understand
44   your needs well, and frames them in the context of the wider community.
45 - **Code reviews:** at any given point, there will be pending PRs, waiting for
46   reviews. Can you take on one, understand what it's trying to do, and
47   provide actionable feedback? Is the code clear, maintainable, and readable?
48   Would you do something differently? Are useful, clear tests provided?
49 - **Code:** take an existing issue and try to fix it, or try to implement
50   an idea.
51 - And probably other ideas not captured here.
52
53 Bear in mind that OSM attracts very diverse contributors with very different
54 needs. Others may have needs different from yours, and reaching a consensus
55 is sometimes difficult.
56
57 If you want to code a feature to this repository, we recommend that you ask
58 for feedback early and often. Create an issue to discuss it, or start with a
59 ["draft" PR](https://github.blog/news-insights/product-news/introducing-draft-pull-requests/)
60 that shows your intention clearly and can be used to provide early
61 feedback. We are not strict on how you communicate, but it's important that
62 you do communicate, early and often, so that you can get feedback quickly.
63 This will help you get buy-in from the maintainers, which will translate into
64 less waste for everyone and a much easier time getting your code merged.
65
66 Bug fixes should be more straighforward than new features, but the same
67 guidance applies. If it turns out to be more complex than initially expected,
68 stop for a moment and seek feedback, be it in an issue or in a draft PR.
69
70 If you are looking for some additional inspiration, you may want to have
71 a look at the [Roadmap](https://github.com/openstreetmap/software-roadmap)
72 that the OSM Foundation published in 2025. This lists items that OSMF
73 would like to focus on, and is not limited to this website. Note that this
74 is not a mandatory list of the contributions that will be accepted. You
75 can choose to ignore it and provide your own contributions. After all,
76 the mission of the OSMF is to support OSM, not to control it.
77
78 ## How to Contribute
79
80 Here's the typical contribution workflow:
81
82 1. **Find an Issue**: Browse our [issues](https://github.com/openstreetmap/openstreetmap-website/issues) or identify a bug/feature you'd like to work on
83 2. **Fork & Clone**: Fork the repository and clone it to your local machine
84 3. **Set Up**: Follow the [installation guide](INSTALL.md) to set up your development environment
85 4. **Develop**: Make your changes following our [code quality guidelines](#code-quality-guidelines)
86 5. **Test**: Write tests for your changes and ensure all existing tests pass
87 6. **Commit**: Write clear commit messages following our [guidelines](#committing)
88 7. **Submit a Pull Request**: Create a pull request with a clear description of your changes
89   - In fact, we suggest that you publish a draft PR early in the process, so
90     that maintainers can provide feedback and guidance as soon as possible.
91
92 ## Code Quality Guidelines
93
94 ### Coding Style
95
96 We use [Rubocop](https://github.com/rubocop-hq/rubocop) (for ruby files), [ESLint](https://eslint.org/) (for javascript files), and [ERB Lint](https://github.com/Shopify/erb-lint) (for erb templates) to help maintain consistency in our code. You can run these utilities during development to check that your code matches our guidelines:
97
98 ```bash
99 bundle exec rubocop
100 bundle exec rails eslint
101 bundle exec erb_lint .
102 ```
103
104 You can automatically fix many linting issues with:
105
106 ```bash
107 bundle exec rubocop -a
108 bundle exec rails eslint:fix
109 bundle exec erb_lint . --autocorrect
110 ```
111
112 > [!NOTE]
113 > Use `bundle exec rails eslint:fix` instead of the standard `eslint --fix` option, which is silently ignored in this Rails project.
114
115 > [!TIP]
116 > You can also install hooks to have git run checks automatically when you commit using [overcommit](https://github.com/sds/overcommit) with:
117 >
118 > ```bash
119 > bundle exec overcommit --install
120 > ```
121
122 ### Testing
123
124 > [!IMPORTANT]
125 > Having a good suite of tests is very important to the stability and maintainability of any code base. The tests in the `openstreetmap-website` code are by no means complete, but they are extensive, and must continue to be so with any new functionality which is written. Tests are also useful in giving others confidence in the code you've written, and can greatly speed up the process of merging in new code.
126
127 When contributing, you should:
128
129 * Write new tests to cover the new functionality you've added.
130 * Where appropriate, modify existing tests to reflect new or changed functionality.
131
132 > [!WARNING]
133 > Never comment out or remove a test just because it doesn't pass.
134
135 You can run the existing test suite with:
136
137 ```bash
138 bundle exec rails test:all
139 ```
140
141 You can run javascript tests with:
142
143 ```bash
144 RAILS_ENV=test bundle exec teaspoon
145 ```
146
147 You can view test coverage statistics by browsing the `coverage` directory.
148
149 The tests are automatically run on Pull Requests and other commits via github actions. The results shown are within the PR display on github.
150
151 > [!TIP]
152 > **System tests** use Selenium with Firefox for browser automation. On Ubuntu 24.04, if Firefox is installed via snap, you may need to override the Firefox binary path in `config/settings.local.yml`:
153 >
154 > ```yaml
155 > system_test_firefox_binary: /snap/firefox/current/usr/lib/firefox/firefox
156 > ```
157
158 ### Static Analysis
159
160 We also perform static analysis of our code. You can run the analysis yourself with:
161
162 ```bash
163 bundle exec brakeman -q
164 ```
165
166 ### Comments
167
168 Sometimes it's not apparent from the code itself what it does, or, more importantly, **why** it does that. Good comments help your fellow developers to read the code and satisfy themselves that it's doing the right thing.
169
170 When contributing, you should:
171
172 * Comment your code where necessary - explain the bits which might be difficult to understand what the code does, why it does it and why it should be the way it is.
173 * Check existing comments to ensure that they are not misleading.
174
175 ## Submitting Changes
176
177 ### Committing
178
179 When you submit your changes, the project maintainers have to read them and understand them. This is difficult enough at the best of times, and misunderstanding commits can lead to them being more difficult to merge. To help with this, when committing you should:
180
181 * Split up large commits into smaller units of functionality.
182 * Keep your commit messages relevant to the changes in each individual commit.
183
184 When writing commit messages please try and stick to the same style as other commits, namely:
185
186 * A one line summary, starting with a capital and with no full stop.
187 * A blank line.
188 * Full description, as proper sentences with capitals and full stops.
189
190 > [!TIP]
191 > Use the imperative verb form in your summary line (e.g., "Add feature" not "Added feature"). A good test is whether your summary line completes the sentence "This commit will...". For example: "This commit will **Fix user login validation**" or "This commit will **Update README installation steps**".
192
193 For simple commits the one line summary is often enough and the body of the commit message can be left out.
194
195 ### Pull Requests
196
197 If you have forked on GitHub then the best way to submit your patches is to push your changes back to GitHub and open a Pull Request on GitHub.
198
199 If your pull request is small, for example one or two commits each containing only a few lines of code, then it is easy for the maintainers to review.
200
201 > [!IMPORTANT]
202 > If you are creating a larger pull request, then please help the maintainers with making the reviews as straightforward as possible:
203 >
204 > * The smaller the PR, the easier it is to review. In particular if a PR is too large to review in one sitting, or if changes are requested, then the maintainer needs to repeatedly re-read code that has already been considered.
205 > * The commit history is important. This is a large codebase, developed over many years by many developers. We frequently need to read the commit history (for example using `git blame`) to figure out what is going on. So small, understandable, and relevant commits are important for other developers looking back at your work in future.
206
207 > [!TIP]
208 > If you are creating a large pull request then please:
209 >
210 > * Consider splitting your pull request into multiple PRs. If part of your work can be considered standalone, or is a foundation for the rest of your work, please submit it separately first.
211 > * Avoid including "fixup" commits. If you have added a fixup commit (for example to fix a rubocop warning, or because you changed your own new code) please combine the fixup commit into the commit that introduced the problem. `git rebase -i` is very useful for this.
212 > * Avoid including "merge" commits. If your PR can no longer be merged cleanly (for example, an unrelated change to Gemfile.lock on master now conflicts with your PR) then please rebase your PR onto the latest master. This allows you to fix the conflicts, while keeping the PR a straightforward list of commits. If there are no conflicts, then there is no need to rebase anything.
213
214 ## Localization (i18n)
215
216 > [!IMPORTANT]
217 > If you make a change that involves the locale files (in `config/locales`) then please only submit changes to the `en.yml` file. The other files are updated via [Translatewiki](https://translatewiki.net/wiki/Translating:OpenStreetMap) and should not be included in your pull request.
218
219 ## Copyright Attribution
220
221 The list of attributions on the /copyright page is managed by the [OSMF Licensing Working Group (LWG)](https://wiki.osmfoundation.org/wiki/Licensing_Working_Group).
222
223 > [!IMPORTANT]
224 > If you want to add another attribution, or make changes to the text of an existing attribution, please follow these steps:
225 >
226 > * First, contact the LWG to discuss your proposed changes.
227 > * If the LWG approves, please create a pull request with your proposed changes.
228 > * Finally, please ask the LWG to formally approve the wording used in the pull request (by having an LWG member comment on the PR).
229 >
230 > When we have formal confirmation from LWG, we can go ahead and merge the PR.