Models and schemas for users and auth tokens

This commit is contained in:
2026-07-09 16:12:09 +03:00
parent ef0d281dcb
commit e06c53a9ff
9 changed files with 105 additions and 1 deletions
+9 -1
View File
@@ -5,11 +5,19 @@ version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.13.18"
scalaVersion := "3.8.4"
libraryDependencies += guice
libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "7.0.2" % Test
// Source: https://mvnrepository.com/artifact/org.postgresql/postgresql
libraryDependencies += "org.postgresql" % "postgresql" % "42.7.13"
// Source: https://mvnrepository.com/artifact/org.playframework/play-slick
libraryDependencies += "org.playframework" %% "play-slick" % "6.2.0"
// Source: https://mvnrepository.com/artifact/org.playframework/play-slick-evolutions
libraryDependencies += "org.playframework" %% "play-slick-evolutions" % "6.2.0"
// Adds additional packages into Twirl
//TwirlKeys.templateImports += "me.artemis.controllers._"