Contributors
Contributing to the Brambl libraries
You want to contribute to Brambl libraries? Awesome. Please take a few moments to
review the following guidelines to get you started. Cheers.
- Communication channels
- Team members
- Documentation
- Issue tracker
- Bug reports
- Pull requests
- Versioning
- License
Communication channels
Before you get lost in the repository, here are a few starting points
for you to check out. You might find that others have had similar
questions or that your question rather belongs in one place than another.
- Chat: https://discord.gg/CHaG8utU
- Website: https://www.topl.co/
- Twitter: https://twitter.com/topl_protocol
Team members
The Brambl libraries are developed as an open source project by Topl
headquartered in Houston, TX. The core maintainers you will encounter in this project
are all part of Topl.
Documentation
The Brambl documentation is primarily auto-generated.
Any pull requests to improve the documentation are highly appreciated.
Using the issue tracker
The issue tracker is the preferred channel for bug reports,
features requests and submitting pull
requests, but please respect the following restriction:
Please do not use the issue tracker for personal support requests (use Discord chat).
Bug reports
A bug is a demonstrable problem that is caused by the code in the repository.
Good bug reports are extremely helpful - thank you!
A good bug report shouldn't leave others needing to chase you up for more
information. Please try to be as detailed as possible in your report. What is
your environment? What steps will reproduce the issue? What would you expect to
be the outcome? All these details will help people to fix any potential bugs.
Pull requests
Good pull requests - patches, improvements, new features - are a fantastic
help. Thanks for taking the time to contribute.
Please ask first before embarking on any significant pull request,
otherwise you risk spending a lot of time working on something that the
project's developers might not want to merge into the project.
Brambl libraries follows the GitFlow branching model. The main
branch always reflects a production-ready state while the latest development is taking place in the dev
branch.
Each time you want to work on a fix or a new feature, create a new branch based on the dev
branch: git checkout -b BRANCH_NAME dev
. Only pull requests to the dev
branch will be merged.
Commit Message Convention
Brambl libraries adapt the Vue's commit convention. Commit messages can have the following types:
build:
Changes that affect the build system or external dependencieschore:
Changes to readme, etcci:
Changes to our CI configuration files and scriptsdocs:
Documentation only changesfeat:
A new featurefix:
A bug fixperf:
A code change that improves performancerefactor:
A code change that neither fixes a bug nor adds a featurestyle:
Changes that do not affect the meaning of the code (white-space, formatting, etc)test:
Adding missing tests or correcting existing tests
Versioning
Brambl is maintained by using the Semantic Versioning Specification (SemVer).
License
By contributing your code, you agree to license your contribution under the MPL 2.0
Updated 12 months ago