15 lines
441 B
Plaintext
15 lines
441 B
Plaintext
# 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}
|
|
}
|
|
}
|
|
} |