From c761fde120a51198e4f9c3c5d35ae25e471b7ca0 Mon Sep 17 00:00:00 2001 From: esmailian Date: Sun, 27 Apr 2025 09:58:20 +0330 Subject: [PATCH] initial commit add yml files --- api-gateway.yml | 2 ++ service-a.yml | 22 ++++++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100755 api-gateway.yml create mode 100755 service-a.yml diff --git a/api-gateway.yml b/api-gateway.yml new file mode 100755 index 0000000..3c51134 --- /dev/null +++ b/api-gateway.yml @@ -0,0 +1,2 @@ +server: + port: 9999 diff --git a/service-a.yml b/service-a.yml new file mode 100755 index 0000000..d76f8e2 --- /dev/null +++ b/service-a.yml @@ -0,0 +1,22 @@ +server: + port: 8085 +spring: + datasource: + driver-class-name: org.postgresql.Driver + url: jdbc:postgresql://85.198.8.43:7832/mmrztest + username: mmrz + password: fEWp7g44rHf8 + # Uncomment below to use localhost config instead + # url: jdbc:postgresql://localhost:5432/version + # username: cloud + # password: cloud + # url: jdbc:postgresql://localhost:5432/mmaddb + # username: mmad + # password: me9775 + + liquibase: + change-log: classpath:db/changelog/liquibase-master.xml + + sql: + init: + mode: always