send full url to eureka
diff --git a/service/src/main/resources/application.yml b/service/src/main/resources/application.yml
index 68e0269..233c048 100644
--- a/service/src/main/resources/application.yml
+++ b/service/src/main/resources/application.yml
@@ -16,11 +16,32 @@
 # specific language governing permissions and limitations
 # under the License.
 #
+spring:
+  cloud:
+    discovery:
+      enabled: false
+    config:
+      enabled: false
+
+eureka:
+  client:
+    serviceUrl:
+      defaultZone: http://localhost:8761/eureka/
+  instance:
+    homePageUrl: "http://${eureka.hostname}:2034/interoperation/v1/"
 
 server:
   port: 2034
   contextPath: /interoperation/v1/*
 
+postgresql:
+  driverClass: org.postgresql.Driver
+  database: seshat
+  host: localhost
+  port: 5432
+  user: postgres
+  password: postgres
+
 async:
   corePoolSize: 32
   maxPoolSize: 16384