forked from opentargets/genetics-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
production.conf
36 lines (33 loc) · 1.06 KB
/
production.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
include "application.conf"
# https://www.playframework.com/documentation/latest/Configuration
http.port = 8080
http.port = ${?PLAY_PORT}
play.http.secret.key = "@t/PB4rK]zIFsMcFLMMSimE`1bG0Gf^:B`u^=3zh7cBjDoX>[PcNG/y4sSwn]hUZ"
play.http.secret.key = ${?PLAY_SECRET}
# Root logger:
logger=ERROR
# Logger used by the framework:
logger.play=ERROR
# Logger provided to your application:
logger.application = INFO
slick.dbs {
default {
profile = "components.clickhouse.ClickHouseProfile$"
db {
driver = "ru.yandex.clickhouse.ClickHouseDriver"
url = "jdbc:clickhouse://devgen2202-ch-11-clickhouse-v8s3.europe-west1-c.c.open-targets-genetics-dev.internal:8123/ot"
url = ${?SLICK_CLICKHOUSE_URL}
numThreads = 4
queueSize = 128
}
}
}
ot.elasticsearch {
host = "devgen2202-es-11-esearch-jts8.europe-west1-b.c.open-targets-genetics-dev.internal"
host = ${?ELASTICSEARCH_HOST}
port = 9200
}
ot.meta.dataVersion.major = 22
ot.meta.dataVersion.major = ${?DATA_MAJOR}
ot.meta.dataVersion.minor = 08
ot.meta.dataVersion.minor = ${?DATA_MINOR}