Skip to content

Latest commit

History

History
109 lines (78 loc) 路 3.74 KB

CONTRIBUTING.md

File metadata and controls

109 lines (78 loc) 路 3.74 KB

Contributing to Monix Connect

The Monix Connect project welcomes contributions from anybody wishing to participate. All code or documentation that is provided must be licensed with the same license that Monix is licensed with (Apache 2.0, see LICENSE.txt).

Code of Conduct

People are expected to follow the Scala Code of Conduct when discussing Monix Connect on the Github page, Gitter channel, or other venues.

We hope that our community will be respectful, helpful, and kind. If you find yourself embroiled in a situation that becomes heated, or that fails to live up to our expectations, you should disengage and contact one of the project maintainers in private. We hope to avoid letting minor aggressions and misunderstandings escalate into larger problems.

General Workflow

  1. Make sure you can license your work under Apache 2.0

  2. Before starting to work, make sure there is a ticket in the issue or create one first. It can help accelerate the acceptance process if the change is agreed upon

  3. If you don't have write access to the repository, you should do your work in a local branch of your own fork and then submit a pull request. If you do have write access to the repository, never work directly on master.

  4. When the work is completed, verify that the unit tests are passing:

sbt test
  1. To run the integration tests:

You'll need to have docker installed and start the dependencies:

sh start-dependencies.sh

Then, verify that integration tests pass:

sbt it:test 
  1. Make sure the code is formatted with:
sbt scalafmtAll
  1. To revise documentation changes, you can run the web page on localhost with:
sbt docs/docusaurusCreateSite
cd website/
yarn start
  1. Submit a Pull Request.

  2. Anyone can comment on a pull request and you are expected to answer questions or to incorporate feedback.

  3. It is not allowed to force push to the branch on which the pull request is based.

General Guidelines

  1. It is recommended that the work is accompanied by unit tests.

  2. The commit messages should be clear and short one lines, if more details are needed, specify a body.

  3. New source files should be accompanied by the copyright header.

  4. Follow the structure of the code in this repository and the indentation rules used.

  5. Your first commit request should be accompanied with a change to the AUTHORS file, adding yourself to the authors list.

Finding Starting Point

If you want to contribute but you don't know where to start - have a look at issues. If there aren't any, have unclear description or seem too complicated - reach us out on the monix/monix-connect gitter channel, a go-to place in case you have any questions or need guidance since we're more than happy to help new contributors regardless of their experience.

License

All code must be licensed under the Apache 2.0 license and all files must include the following copyright header:

Copyright (c) 2020-$today.year by The Monix Connect Project Developers.
See the project homepage at: https://connect.monix.io/

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.