aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/reference.conf
diff options
context:
space:
mode:
authorJohn St. John <jstjohn@users.noreply.github.com>2017-09-21 16:28:23 -0700
committerGitHub <noreply@github.com>2017-09-21 16:28:23 -0700
commit9b0bed19489dbbd59c52a77e9c0c080a880ca262 (patch)
tree74934c57133ada3cd84a5c8a702cdf2683e8881e /src/main/resources/reference.conf
parent037f522caf47d70d674daba62b540a451542c64d (diff)
downloaddriver-core-9b0bed19489dbbd59c52a77e9c0c080a880ca262.tar.gz
driver-core-9b0bed19489dbbd59c52a77e9c0c080a880ca262.tar.bz2
driver-core-9b0bed19489dbbd59c52a77e9c0c080a880ca262.zip
Jstjohn/google stackdriver trace (#64)v1.0.1
Add app-level tracing to driver-core (https://www.pivotaltracker.com/story/show/151100422)
Diffstat (limited to 'src/main/resources/reference.conf')
-rw-r--r--src/main/resources/reference.conf26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/main/resources/reference.conf b/src/main/resources/reference.conf
new file mode 100644
index 0000000..637f713
--- /dev/null
+++ b/src/main/resources/reference.conf
@@ -0,0 +1,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"
+ }
+}