https://github.com/an-tex/sc8s
Scala on Skates - Extensions for distributed applications based on Akka & Lagom
https://github.com/an-tex/sc8s
akka circe lagom logstash
Last synced: 6 months ago
JSON representation
Scala on Skates - Extensions for distributed applications based on Akka & Lagom
- Host: GitHub
- URL: https://github.com/an-tex/sc8s
- Owner: an-tex
- License: mit
- Created: 2021-02-01T14:09:04.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-04-01T11:12:02.000Z (6 months ago)
- Last Synced: 2025-04-13T02:16:25.338Z (6 months ago)
- Topics: akka, circe, lagom, logstash
- Language: Scala
- Homepage:
- Size: 852 KB
- Stars: 8
- Watchers: 1
- Forks: 2
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://search.maven.org/search?q=g:net.sc8s)
[](https://scala-steward.org)# sc8s
### akka-circe
[Akka](https://akka.io) serializers using [circe](https://github.com/circe/circe). Includes serializers for `ActorRefs`
and `StreamRefs`### lagom-api-circe
[Lagom](https://www.lagomframework.com/) message serializers using [circe](https://github.com/circe/circe).
### lagom-server-circe
[Lagom](https://www.lagomframework.com/) components using `akka-circe`
### lagom-server-circe-testkit
[Lagom](https://www.lagomframework.com/) [ScalaTest](https://www.scalatest.org/) helpers
### logstage-elastic
Rendering policy for [Logstage](https://izumi.7mind.io/logstage/) for enhanced [ElasticSearch](https://elastic.co/)
compability## Usage
Add the following to your `build.sbt`:
`val sc8sVersion =` [](https://search.maven.org/search?q=g:net.sc8s)
```sbt
libraryDependencies ++= Seq(
"net.sc8s" %% "akka-circe" % sc8sVersion,
"net.sc8s" %% "lagom-api-circe" % sc8sVersion,
"net.sc8s" %% "lagom-server-circe" % sc8sVersion,
"net.sc8s" %% "lagom-server-circe-testkit" % sc8sVersion % Test,
"net.sc8s" %% "logstage-elastic" % sc8sVersion,
)
```