forked from opentargets/platform-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
production.conf
39 lines (38 loc) · 1.03 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
37
38
39
include "application.conf"
# https://www.playframework.com/documentation/latest/Configuration
http.port = 8080
http.port = ${?PLAY_PORT}
play.http.secret.key = "k:ax73XurOTlYSWyEkrLPx=P9HcpKLWprmBQi_]efV68ASNdiXd7a3lj?>M747f:"
play.http.secret.key = ${?PLAY_SECRET}
slick.dbs {
default {
profile = "clickhouse.ClickHouseProfile$"
db {
driver = "ru.yandex.clickhouse.ClickHouseDriver"
url = "jdbc:clickhouse://platform22-02-2-220120-174107-es-vm.c.open-targets-eu-dev.internal:8123"
url = ${?SLICK_CLICKHOUSE_URL}
numThreads = 4
queueSize = 128
}
}
}
ot {
elasticsearch {
host = "platform22-02-2-220120-174107-es-vm"
port = 9200
host = ${?ELASTICSEARCH_HOST}
port = ${?ELASTICSEARCH_PORT}
}
meta {
apiVersion {
x = ${?META_APIVERSION_MAJOR}
y = ${?META_APIVERSION_MINOR}
z = ${?META_APIVERSION_PATCH}
}
dataVersion {
year = ${?META_DATAVERSION_YEAR}
month = ${?META_DATAVERSION_MONTH}
iteration = ${?META_DATAVERSION_ITERATION}
}
}
}