first commit

This commit is contained in:
2025-10-09 10:36:56 +02:00
commit 81a1fbfdb9
21 changed files with 347 additions and 0 deletions

17
build.sbt Normal file
View File

@@ -0,0 +1,17 @@
name := """KnockOutWhist-Web"""
organization := "com.example"
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.13.17"
libraryDependencies += guice
libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "7.0.2" % Test
// Adds additional packages into Twirl
//TwirlKeys.templateImports += "com.example.controllers._"
// Adds additional packages into conf/routes
// play.sbt.routes.RoutesKeys.routesImport += "com.example.binders._"