-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add scaladoc support. * remove depends on. * try fixing ci, part one. * remove extra settings. * remove std settings. * just scala 213 for docs. * remove keeper from unidoc. * update zio-sbt-website plugin. * ignore version on index.md file. * update readme. * update scala version. * ignore docs from publishing. * remove check artifact build process.
- Loading branch information
Showing
6 changed files
with
92 additions
and
56 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 |
---|---|---|
@@ -1,37 +1,60 @@ | ||
[//]: # (This file was autogenerated using `zio-sbt-website` plugin via `sbt generateReadme` command.) | ||
[//]: # (So please do not edit it manually. Instead, change "docs/index.md" file or sbt setting keys) | ||
[//]: # (e.g. "readmeDocumentation" and "readmeSupport".) | ||
|
||
# ZIO Keeper | ||
|
||
| Project Stage | CI | Issues | Discord | | ||
| ------------------------------------- |-----------------|-------------------------------------------------------------|-------------------------------------------| | ||
| [![Project stage][Stage]][Stage-Page] | ![CI][Badge-CI] | [![Is it maintained?][Badge-Maintenance]][Link-Maintenance] | [![Discord][Badge-Discord]][Link-Discord] | | ||
ZIO Keeper is a purely-functional, type-safe library for building distributed systems. | ||
|
||
[![Experimental](https://img.shields.io/badge/Project%20Stage-Experimental-yellowgreen.svg)](https://github.com/zio/zio/wiki/Project-Stages) ![CI Badge](https://github.com/zio/zio-keeper/workflows/CI/badge.svg) [![Sonatype Snapshots](https://img.shields.io/nexus/s/https/oss.sonatype.org/dev.zio/zio-keeper_2.13.svg?label=Sonatype%20Snapshot)](https://oss.sonatype.org/content/repositories/snapshots/dev/zio/zio-keeper_2.13/) [![ZIO Keeper](https://img.shields.io/github/stars/zio/zio-keeper?style=social)](https://github.com/zio/zio-keeper) | ||
|
||
ZIO Keeper is a purely-functional, type-safe library for building distributed | ||
systems. | ||
## Introduction | ||
|
||
It provides numerous primitives for tackling the common problems in distributed | ||
computing (e.g. leader election, cluster forming etc.). Under the hood, the | ||
library is backed by [ZIO][Link-ZIO] and [ZIO NIO][Link-NIO], profiting from their | ||
performant, type and resource-safe APIs. | ||
It provides numerous primitives for tackling the common problems in distributed computing (e.g. leader election, cluster forming etc.). | ||
|
||
Under the hood, the library is backed by [ZIO][Link-ZIO] and [ZIO NIO][Link-NIO], profiting from their performant, type and resource-safe APIs: | ||
- **Composable**. Design complex systems by composing the available building blocks. | ||
- **Resilient**. Build apps with automated failure recovery. | ||
- **Secure**. Benefit from security guarantees built into the library core. | ||
|
||
To learn more about ZIO Keeper, check out the following references: | ||
From the high-level perspective, the library can be separated into the following | ||
"modules": | ||
- transport | ||
- membership | ||
- consensus | ||
|
||
## Installation | ||
|
||
In order to use this library, we need to add the following line in our `build.sbt` file: | ||
|
||
- [Homepage](https://zio.dev/zio-keeper/) | ||
- [Contributor's guide](./.github/CONTRIBUTING.md) | ||
- [License](LICENSE) | ||
- [Issues](https://github.com/zio/zio-keeper/issues) | ||
- [Milestones](https://github.com/zio/zio-keeper/milestones?direction=asc&sort=title&state=open) | ||
- [Pull Requests](https://github.com/zio/zio-keeper/pulls) | ||
```scala | ||
libraryDependencies += "dev.zio" %% "zio-keeper" % "<version>" | ||
|
||
resolvers += Resolver.sonatypeRepo("snapshots") | ||
``` | ||
|
||
[Badge-CI]: https://github.com/zio/zio-keeper/workflows/CI/badge.svg | ||
[Badge-Discord]: https://img.shields.io/discord/629491597070827530?logo=discord | ||
[Badge-Maintenance]: http://isitmaintained.com/badge/resolution/zio/zio-keeper.svg | ||
[Link-Discord]: https://discord.gg/2ccFBr4 | ||
[Link-Maintenance]: http://isitmaintained.com/project/zio/zio-keeper | ||
[Link-ZIO]: https://zio.dev | ||
[Link-NIO]: https://zio.github.io/zio-nio/ | ||
[Stage]: https://img.shields.io/badge/Project%20Stage-Experimental-yellow.svg | ||
[Stage-Page]: https://github.com/zio/zio/wiki/Project-Stages | ||
|
||
## Documentation | ||
|
||
Learn more on the [ZIO Keeper homepage](https://zio.dev/zio-keeper/)! | ||
|
||
## Contributing | ||
|
||
For the general guidelines, see ZIO [contributor's guide](https://zio.dev/about/contributing). | ||
|
||
## Code of Conduct | ||
|
||
See the [Code of Conduct](https://zio.dev/about/code-of-conduct) | ||
|
||
## Support | ||
|
||
Come chat with us on [![Badge-Discord]][Link-Discord]. | ||
|
||
[Badge-Discord]: https://img.shields.io/discord/629491597070827530?logo=discord "chat on discord" | ||
[Link-Discord]: https://discord.gg/2ccFBr4 "Discord" | ||
|
||
## License | ||
|
||
[License](LICENSE) |
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