Contributing

We’re always interested in improvements in byro, and your help is welcome! We’ll review your contributions and give feedback on your changes, and help you if you’re not sure how to solve a problem.

You’ll need to have a GitHub account to contribute to byro, and should know how to pull, push, and commit using git.

If you have some improvement already in mind, please open an issue for it. Otherwise, look at our open issues and choose one you want to resolve. Don’t hesitate to comment on the issue if anything is unclear.

First off, fork byro, and then clone your repository (GitHub will provide instructions). Once you have cloned your repository and opened it, create a new feature branch including the issue ID:

git checkout -b issue/123

If your issue requires code changes, complete the development setup, then continue here. If you want to change the documentation, please read up on the documentation setup.

We have a couple of style checkers both for code and for documentation, as documented in the setup docs. We check them in our Continuous Integration for every commit and pull request, but you should run the tests and checks locally as well, and consider your pull request ready once those tests pass.

Please write helpful, well-formatted commit messages – you can find a guide here. Once you have committed your work, add yourself to the src/byro/office/templates/office/settings/about.html file, and push your branch:

git push -u origin issue/123

and open a pull request. This will cause our Continuous Integration to check your changes for any issues (breaking tests, code style issues, documentation style issues, …). Please give us five to seven days to get back to you with a review or a direct merge.

Licensing of contributions

byro is licensed under the GNU Affero General Public License, version 3.0 only (AGPL-3.0-only). The documentation in the docs/ directory is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License (CC-BY-SA-4.0). The LICENSE file explains the details, including the licensing history of older, Apache-2.0 licensed versions and the licenses of bundled third-party components.

Unless explicitly stated otherwise, contributions submitted for inclusion in byro are licensed under the AGPL-3.0-only, and contributions to the documentation in docs/ are licensed under the CC-BY-SA-4.0. By submitting a contribution, for example by opening a pull request, you confirm that you have the necessary rights to submit it under the respective license. If your contribution includes code, text, images or other material from other projects, make sure that its license is compatible with the AGPL-3.0-only or the CC-BY-SA-4.0 respectively, keep the original copyright and license notices intact, and point this out in your pull request.