Skip to content

Latest commit

 

History

History
49 lines (30 loc) · 1.08 KB

CONTRIBUTING.md

File metadata and controls

49 lines (30 loc) · 1.08 KB

Contributing

We love pull requests from everyone. By participating in this project, you agree to abide by the code of conduct.

Fork, then clone the repo:

git clone git@github.com:your-username/doorkeeper.git

Docker Setup

Build the container image with: docker build --pull -t doorkeeper:test . Run the tests with: docker run -it --rm doorkeeper:test

Local Setup

Set up Ruby dependencies via Bundler

bundle install

Make sure the tests pass:

rake

Make your change. Write tests. Follow our style guide. Make the tests pass:

rake

Add notes on your change to the CHANGELOG.md file.

Write a good commit message. Push to your fork. Submit a pull request.

If Hound catches style violations, fix them.

Wait for us. We try to at least comment on pull requests within one business day. We may suggest changes.

Thank you for your contribution!