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
+14
View File
@@ -1 +1,15 @@
# https://www.playframework.com/documentation/latest/Configuration
slick.dbs.default = {
profile = "slick.jdbc.PostgresProfile$"
db = {
dataSourceClass = "org.postgresql.ds.PGSimpleDataSource"
properties = {
serverName = "localhost"
portNumber = "5432"
databaseName = ${POSTGRES_DB}
user = ${POSTGRES_USER}
password = ${POSTGRES_PASSWORD}
}
}
}