initial way to run the server:

sbt:backend> assembly
java -jar backend/target/scala-3.2.0/backend-assembly-0.1.0-SNAPSHOT.jar
This commit is contained in:
efim
2023-04-23 18:33:29 +04:00
parent 1f7fdfb387
commit 329dc6e8b2
4 changed files with 11 additions and 13 deletions

View File

@@ -52,7 +52,8 @@ lazy val backend = project
// available for 2.12, 2.13, 3.2
libraryDependencies += "co.fs2" %% "fs2-core" % "3.6.1",
libraryDependencies += "org.typelevel" %% "cats-core" % "2.9.0",
libraryDependencies += "org.typelevel" %% "cats-effect" % "3.4.9"
libraryDependencies += "org.typelevel" %% "cats-effect" % "3.4.9",
assembly / mainClass := Some("industries.sunshine.planningpoker.BackendApp"),
)
.dependsOn(common.jvm)