-
Notifications
You must be signed in to change notification settings - Fork 1
/
it.conf
39 lines (32 loc) · 872 Bytes
/
it.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
include classpath("application.conf")
play.crypto.secret=travis-ci-secret
play.modules {
#disabled += play.api.cache.EhCacheModule
disabled += play.api.i18n.I18nModule
enabled += i18n.I18nModule
enabled += modules.NoCacheModule
}
translatr {
# Currently available: google, github, facebook, twitter, keycloak
auth.providers = ""
stream.io {
#
# Stream.io is the notification provider for the app. To retrieve the
# app credentials, go to https://getstream.io and create an app.
#
key = ""
secret = ""
}
}
pac4j.clients.keycloak {
clientId = "KEYCLOAK_CLIENT_ID"
clientSecret = "KEYCLOAK_CLIENT_SECRET"
}
db.default {
driver = "org.postgresql.Driver"
url = "postgres://translatr:translatr@localhost/translatr-test?reWriteBatchedInserts=true"
}
play.evolutions.db.default {
autoApply = true
autoApplyDowns = true
}