aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/reference.conf
blob: 637f71387bd421a85e94f89646cedc2646becf90 (plain) (blame)
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
// This file takes on the lowest config priority. Any settings implemented in
// entities that use this library will take precedence.
application {
  baseUrl: "localhost:8080"
  environment: "local_testing"
}

swagger {
  apiVersion = "2.0"
  basePath = "/"
  docsPath = "api-docs"

  apiInfo {
    title = "NEW SERVICE"
    description = "Please implement swagger info in your new service"
    termsOfServiceUrl = "TOC Url"
    contact {
      name = "Driver Inc."
      url = "http://driver.xyz"
      email = "info@driver.xyz"
    }
    license = "Apache V2"
    licenseUrl = "http://www.apache.org/licenses/LICENSE-2.0"
  }
}