Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 715 Bytes

CONTRIBUTING.md

File metadata and controls

29 lines (20 loc) · 715 Bytes

Contribution Guide

  1. Create a new Frappe site with Frappe Manager.

  2. Install the app on the site.

bench get-app https://github.com/rtCamp/frappe-slack-connector
bench --site [site-name] install-app frappe_slack_connector
  1. Set up pre-commit in the app.
pre-commit install
  1. Push the code to the given branch.
git pull origin main # Make sure to pull the latest changes before making the PR

git checkout -b "new/branch"
git add --all
git commit -m ".."
git push origin "new/branch"

For branch names and commit messages, follow the guidelines at: https://www.conventionalcommits.org/en/v1.0.0/