forked from sofastack/sofa-jraft
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
42 changed files
with
964 additions
and
661 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
name: Ask Question | ||
about: Ask a question about usage or feature | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
### Your question | ||
|
||
Describe your question clearly | ||
|
||
### Your scenes | ||
|
||
Describe your use scenes (why need this feature) | ||
|
||
### Your advice | ||
|
||
Describe the advice or solution you'd like | ||
|
||
### Environment | ||
|
||
- SOFAJRaft version: | ||
- JVM version (e.g. `java -version`): | ||
- OS version (e.g. `uname -a`): | ||
- Maven version: | ||
- IDE version: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
name: Bug Report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
### Describe the bug | ||
|
||
A clear and concise description of what the bug is. | ||
|
||
### Expected behavior | ||
|
||
### Actual behavior | ||
|
||
### Steps to reproduce | ||
|
||
### Minimal yet complete reproducer code (or GitHub URL to code) | ||
|
||
### Environment | ||
|
||
- SOFAJRaft version: | ||
- JVM version (e.g. `java -version`): | ||
- OS version (e.g. `uname -a`): | ||
- Maven version: | ||
- IDE version: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
### Motivation: | ||
|
||
Explain the context, and why you're making that change. | ||
To make others understand what is the problem you're trying to solve. | ||
|
||
### Modification: | ||
|
||
Describe the idea and modifications you've done. | ||
|
||
### Result: | ||
|
||
Fixes #<GitHub issue number>. | ||
|
||
If there is no issue then describe the changes introduced by this PR. |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
## Contributing to SOFAJRaft | ||
|
||
SOFAJRaft is released under the Apache 2.0 license, and follows a very | ||
standard Github development process, using Github tracker for issues and | ||
merging pull requests into master. If you would like to contribute something, | ||
or simply want to hack on the code this document should help you get started. | ||
|
||
### Sign the Contributor License Agreement | ||
Before we accept a non-trivial patch or pull request we will need you to | ||
sign the Contributor License Agreement. Signing the contributor’s agreement | ||
does not grant anyone commit rights to the main repository, but it does mean | ||
that we can accept your contributions, and you will get an author credit if | ||
we do. Active contributors might be asked to join the core team, and given | ||
the ability to merge pull requests. | ||
|
||
### Code Conventions | ||
None of these is essential for a pull request, but they will all help. | ||
|
||
1. we provided a [code formatter file](./tools/codestyle/formatter.xml), it | ||
will formatting automatically your project when during process of building. | ||
|
||
2. Make sure all new `.java` files to have a simple Javadoc class comment | ||
with at least an `@author` tag identifying you, and preferably at least a | ||
paragraph on what the class is for. | ||
|
||
3. Add the ASF license header comment to all new `.java` files (copy from | ||
existing files in the project) | ||
|
||
4. Add yourself as an `@author` to the `.java` files that you modify | ||
substantially (more than cosmetic changes). | ||
|
||
5. Add some Javadocs. | ||
|
||
6. A few unit tests would help a lot as well — someone has to do it. | ||
|
||
7. When writing a commit message please follow [these conventions](https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html), | ||
if you are fixing an existing issue please add Fixes gh-XXXX at the end of the commit message (where XXXX is the issue number). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.