-
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.
[APPENG-299] Updates docs as per TechDocs guidelines (#20)
- Loading branch information
1 parent
05fda48
commit 2909280
Showing
6 changed files
with
52 additions
and
9 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
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,5 @@ | ||
# Configuration | ||
|
||
Usually you just need to specify `tw-curator.zookeeper-connect-string`. | ||
|
||
Consult with `TwCuratorProperties` for options. |
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,3 @@ | ||
# Contribution Guide | ||
To contribute to the library, you can either open an issue or create a pull request. Please ensure that you create unit tests for any new features you introduce and ensure that all tests are passing. | ||
Finally, please remember to update the [project's version](https://github.com/transferwise/tw-curator/blob/master/gradle.properties) following [semantic versioning](https://semver.org/), and update the [CHANGELOG](https://github.com/transferwise/tw-curator/blob/master/CHANGELOG.md) accordingly. |
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 @@ | ||
# Tw-Curator documentation | ||
|
||
## Table of Contents | ||
* [Introduction](#intro) | ||
* [Configuration](configuration.md) | ||
* [Usage](usage.md) | ||
* [Contribution Guide](contributing.md) | ||
|
||
## Intro | ||
|
||
The library will create a Curator Auto Configuration, which will provide a CuratorFramework bean. | ||
|
||
It is necessary to reduce duplication in most of our libraries. | ||
|
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,15 @@ | ||
# Usage | ||
|
||
To use the library, first add the `mavenCentral` repository to your `repositories` block in your `build.gradle`: | ||
```groovy | ||
repositories { | ||
mavenCentral() | ||
} | ||
``` | ||
Then, add the `tw-curator` library as a dependency in your `dependencies` block in your `build.gradle`: | ||
```groovy | ||
dependencies { | ||
implementation 'com.transferwise.common:tw-curator:<VERSION>' | ||
} | ||
``` | ||
> Replace `<VERSION>` with the version of the library you want to use. |
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,8 @@ | ||
site_name: Tw-Curator Documentation | ||
repo_url: https://github.com/transferwise/tw-curator | ||
edit_uri: blob/master/docs/ | ||
nav: | ||
- Overview: index.md | ||
- Configuration: configuration.md | ||
- Usage: usage.md | ||
- Contributing: contributing.md |