forked from dockstore/dockstore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dockstore.yml
68 lines (52 loc) · 1.86 KB
/
dockstore.yml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
template: Hello, %s!
quayClientID: <fill me in>
# port should match the port where the UI is being hosted, 9000 by default
quayRedirectURI: http://<fill me in>:9000/accounts
githubClientID: <fill me in>
githubClientSecret: <fill me in>
# port should match the port where the UI is being hosted, 9000 by default
githubRedirectURI: http://<fill me in>:9000/login
bitbucketClientID: <fill me in>
bitbucketClientSecret: <fill me in>
gitlabClientID: <fill me in>
gitlabClientSecret: <fill me in>
gitlabRedirectURI: <fill me in>
# the following values describe where the webservice is being run (and on what port and using what scheme) to configure swagger
hostname: <fill me in>
scheme: http
port: 8080
authenticationCachePolicy: maximumSize=10000, expireAfterAccess=10m
httpClient:
timeout: 5500ms
connectionTimeout: 5500ms
timeToLive: 1h
cookiesEnabled: false
maxConnections: 1024
maxConnectionsPerRoute: 1024
keepAlive: 0ms
retries: 0
database:
# the name of your JDBC driver
driverClass: org.postgresql.Driver
# the username
user: webservice
# the password
password: iAMs00perSecrEET
# the JDBC URL
url: jdbc:postgresql://localhost:5432/webservice
# any properties specific to your JDBC driver:
properties:
charSet: UTF-8
hibernate.dialect: org.hibernate.dialect.PostgreSQLDialect
# create database as needed, disable in production
hibernate.hbm2ddl.auto: validate
# the maximum amount of time to wait on an empty pool before throwing an exception
maxWaitForConnection: 1s
# the SQL query to run when validating a connection's liveness
validationQuery: "/* MyApplication Health Check */ SELECT 1"
# the minimum number of connections to keep open
minSize: 8
# the maximum number of connections to keep open
maxSize: 32
# whether or not idle connections should be validated
checkConnectionWhileIdle: false