-
Notifications
You must be signed in to change notification settings - Fork 417
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
46b0258
commit 3ff9e7a
Showing
10 changed files
with
4,402 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Setting Spring context path & port | ||
server.servlet.context-path=/v1 | ||
server.port=8092 | ||
|
||
spring.jpa.hibernate.ddl-auto=update | ||
|
||
# Setting Spring profile | ||
spring.profiles.active=test | ||
springdoc.swagger-ui.enabled=true | ||
springdoc.api-docs.enabled=true | ||
|
||
# swagger-ui custom path | ||
springdoc.swagger-ui.path=/swagger-ui.html | ||
springdoc.packagesToScan=com.yas.search | ||
|
||
keycloak.auth-server-url=http://identity | ||
keycloak.realm=Yas | ||
keycloak.resource=customer-management | ||
keycloak.credentials.secret=NKAr3rnjwm9jlakgKpelukZGFaHYqIWE #gitleaks:allow | ||
|
||
spring.security.oauth2.resourceserver.jwt.issuer-uri=test | ||
springdoc.oauthflow.authorization-url=test | ||
springdoc.oauthflow.token-url=test | ||
|
||
elasticsearch.url=elasticsearch | ||
elasticsearch.username= | ||
elasticsearch.password= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<configuration> | ||
<include resource="org/springframework/boot/logging/logback/base.xml" /> | ||
<springProperty scope="context" name="appName" source="spring.application.name"/> | ||
|
||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | ||
<encoder> | ||
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> | ||
</encoder> | ||
</appender> | ||
|
||
<root level="INFO"> | ||
<appender-ref ref="STDOUT"/> | ||
</root> | ||
</configuration> | ||
|
2 changes: 2 additions & 0 deletions
2
search/src/it/resources/mockito-extensions/org.mockito.plugins.MockMaker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
mock-maker-inline | ||
|
Oops, something went wrong.