Revision 048058177e93589808b3eca841cf7caa9371933e authored by Denis Yuen on 12 February 2016, 21:41:12 UTC, committed by Denis Yuen on 12 February 2016, 21:41:12 UTC
1 parent fe18e2e
Raw File
dockstore.yml
template: Hello, %s!
quayClientID: <fill me in>
quayRedirectURI: http://<fill me in>:8080/accounts
githubClientID: <fill me in>
githubClientSecret: <fill me in>
githubRedirectURI: http://<fill me in>:8080/login
bitbucketClientID: <fill me in>
bitbucketClientSecret:  <fill me in>
hostname: <fill me in>
scheme: https
port: 8443

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: create

  # 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
back to top