Skip to content

Latest commit

 

History

History
30 lines (29 loc) · 686 Bytes

CONTRIBUTING.md

File metadata and controls

30 lines (29 loc) · 686 Bytes

MiniSLite Development and Contribution

Open issue

Open issue about your feature or bug in this here.

Clone this repository.

git clone https://github.com/ahmetkotan/minislite

Create new branch with your issue id

git checkout -b feature-#<issue-id>

Install Requirements

pip install -r requirements/development.txt

Make your changes

Write tests

Pre-commit

pre-commit install

Commit and push your changes

git add .
pre-commit run  # check pre-commit
git commit -m "added changes #<issue-id>"
git push origin feature-#<issue-id>

Create new Pull Request