# https://www.playframework.com/documentation/latest/Configuration play.http.filters=controllers.filters.Filters 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 } } }