Revision cc7df0394f096a03952acb9a39fb5333b0102df1 authored by Denis Yuen on 26 October 2017, 20:56:38 UTC, committed by Denis Yuen on 26 October 2017, 20:56:38 UTC
1 parent 5ecab3a
Raw File
dockstore.yml
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: 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