47 lines
1.1 KiB
Plaintext
47 lines
1.1 KiB
Plaintext
# https://www.playframework.com/documentation/latest/Configuration
|
|
|
|
play.http.filters=controllers.filters.Filters
|
|
|
|
play.modules.enabled += "mqttClient.Module"
|
|
|
|
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}
|
|
}
|
|
}
|
|
}
|
|
|
|
pekko {
|
|
actor {
|
|
crypto-dispatcher {
|
|
type = Dispatcher
|
|
executor = "thread-pool-executor"
|
|
thread-pool-executor {
|
|
fixed-pool-size = 2
|
|
}
|
|
throughput = 1
|
|
}
|
|
|
|
mqtt-dispatcher {
|
|
type = Dispatcher
|
|
executor = "fork-join-executor"
|
|
fork-join-executor {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
mqtt {
|
|
host = "localhost"
|
|
port = 1883
|
|
clientId = "neon-vertigo-api"
|
|
username = "artemis"
|
|
password = "artemis"
|
|
} |