Skip to content

Latest commit

 

History

History
55 lines (35 loc) · 773 Bytes

CONTRIBUTING.md

File metadata and controls

55 lines (35 loc) · 773 Bytes

Contributing to Dundie Project

Summary of project

Guidelines

  • Backwards compatibility.
  • Multiplatform.
  • Python 3 only.

Code of Conduct

  • Be gentle.

How to contribute

Fork repository

Clone to local dev environment

git clone https://github.com/vmagueta/dundie-rewards
...

Prepare virtual env

cd dundie-rewards
make virtualenv
make install

Coding style

  • This projects follows PEP8.

Run tests

make test
# or
make watch

Commit rules

  • We follow conventional commit messages. ex: [bugfix] reason #issue
  • We required signed commits.

Pull Request Rulls

  • We required all tests to be passing.