aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/reference.conf
diff options
context:
space:
mode:
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"
+ }
+}