Skip to content
This repository has been archived by the owner on Jul 11, 2024. It is now read-only.

Commit

Permalink
(hotfix): fix env variables in the github.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasForst committed Oct 20, 2022
1 parent a5c7d6a commit 9344708
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 7 deletions.
15 changes: 8 additions & 7 deletions github.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
host: ${DW_REDIS_HOST:-localhost}
port: ${DW_REDIS_PORT:-6379} #redis
password: ${DW_REDIS_PASSWORD:-} #redis
timeout: 5000
13 changes: 13 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,19 @@
<version>1.1.0</version>
<scope>test</scope>
</dependency>
<!-- API, java.xml.bind module -->
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>2.3.2</version>
</dependency>

<!-- Runtime, com.sun.xml.bind module -->
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>2.3.2</version>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit 9344708

Please sign in to comment.