diff --git a/github.yaml b/github.yaml
index d6c7be3..7cf8197 100644
--- a/github.yaml
+++ b/github.yaml
@@ -16,14 +16,15 @@ swagger:
- https
postgres:
- host: localhost
- port: 5432
- database: postgres
+ host: ${DW_POSTGRES_HOST:-localhost}
+ port: ${DW_POSTGRES_PORT:-5432}
+ database: ${DW_POSTGRES_DATABASE:-postgres}
driver: postgresql
- user: postgres
+ user: ${DW_POSTGRES_USER:-postgres}
password: ${DW_POSTGRES_PASSWORD}
db:
- host: localhost
- port: 6379 #redis
- timeout: 5000
\ No newline at end of file
+ host: ${DW_REDIS_HOST:-localhost}
+ port: ${DW_REDIS_PORT:-6379} #redis
+ password: ${DW_REDIS_PASSWORD:-} #redis
+ timeout: 5000
diff --git a/pom.xml b/pom.xml
index eaa5b10..dd26fc0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -41,6 +41,19 @@
1.1.0
test
+
+
+ jakarta.xml.bind
+ jakarta.xml.bind-api
+ 2.3.2
+
+
+
+
+ org.glassfish.jaxb
+ jaxb-runtime
+ 2.3.2
+