-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
LSING46
authored and
LSING46
committed
Dec 7, 2024
1 parent
2092346
commit 27ff03d
Showing
24 changed files
with
580 additions
and
88 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Java CI with Maven (User Service) | ||
name: Java CI with Maven | ||
|
||
on: | ||
push: | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,40 @@ | ||
server: | ||
port: 8084 | ||
|
||
spring: | ||
application: | ||
name: bag-service | ||
config: | ||
activate: | ||
on-profile: local | ||
import: "optional:configserver:" | ||
# config: | ||
# enabled: true | ||
cloud: | ||
bus: | ||
enabled: false | ||
|
||
# Configure the message broker connection (RabbitMQ or Kafka) | ||
# cloud: | ||
# config: | ||
# uri: http://${CONFIG_SERVER_SERVICE_SERVICE_HOST:localhost}:8085 | ||
# bus: | ||
# enabled: true | ||
# refresh: | ||
# enabled: true | ||
# trace: | ||
# enabled: true | ||
# rabbitmq: | ||
# addresses: ${RABBITMQ_SERVICE_SERVICE_HOST:localhost} | ||
eureka: | ||
client: | ||
register-with-eureka: true | ||
fetch-registry: true | ||
serviceUrl: | ||
defaultZone: ${EUREKA_URI:http://localhost:8761/eureka} #eureka endpoint | ||
healthcheck: | ||
enabled: true | ||
instance: | ||
leaseRenewalIntervalInSeconds: 1 | ||
leaseExpirationDurationInSeconds: 2 | ||
hostname: localhost |
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
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
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
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,58 @@ | ||
server: | ||
port: 8085 | ||
|
||
spring: | ||
application: | ||
name: config-service | ||
config: | ||
activate: | ||
on-profile: local | ||
cloud: | ||
config: | ||
server: | ||
git: | ||
uri: https://github.com/Lokesh598/order-management-spring-cloud-config | ||
default-label: main | ||
clone-on-start: true | ||
monitor: | ||
enabled: true | ||
bus: | ||
enabled: false | ||
stream: | ||
kafka: | ||
binder: | ||
brokers: localhost:9092 | ||
bindings: | ||
output: | ||
destination: config-server | ||
|
||
management: | ||
endpoints: | ||
web: | ||
exposure: | ||
include: "*" | ||
|
||
# Configure the message broker connection (RabbitMQ or Kafka) | ||
# cloud: | ||
# config: | ||
# uri: http://${CONFIG_SERVER_SERVICE_SERVICE_HOST:localhost}:8085 | ||
# bus: | ||
# enabled: true | ||
# refresh: | ||
# enabled: true | ||
# trace: | ||
# enabled: true | ||
# rabbitmq: | ||
# addresses: ${RABBITMQ_SERVICE_SERVICE_HOST:localhost} | ||
eureka: | ||
client: | ||
register-with-eureka: true | ||
fetch-registry: true | ||
serviceUrl: | ||
defaultZone: ${EUREKA_URI:http://localhost:8761/eureka} #eureka endpoint | ||
healthcheck: | ||
enabled: true | ||
instance: | ||
leaseRenewalIntervalInSeconds: 1 | ||
leaseExpirationDurationInSeconds: 2 | ||
hostname: localhost |
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
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,40 @@ | ||
#server: | ||
# port: 8082 | ||
|
||
#spring: | ||
# application: | ||
# name: eureka-service | ||
# config: | ||
# activate: | ||
# on-profile: local | ||
# import: "optional:configserver:" | ||
## config: | ||
## enabled: true | ||
# cloud: | ||
# bus: | ||
# enabled: false | ||
|
||
# Configure the message broker connection (RabbitMQ or Kafka) | ||
# cloud: | ||
# config: | ||
# uri: http://${CONFIG_SERVER_SERVICE_SERVICE_HOST:localhost}:8085 | ||
# bus: | ||
# enabled: true | ||
# refresh: | ||
# enabled: true | ||
# trace: | ||
# enabled: true | ||
# rabbitmq: | ||
# addresses: ${RABBITMQ_SERVICE_SERVICE_HOST:localhost} | ||
#eureka: | ||
# client: | ||
# register-with-eureka: true | ||
# fetch-registry: true | ||
# serviceUrl: | ||
# defaultZone: ${EUREKA_URI:http://localhost:8761/eureka} #eureka endpoint | ||
# healthcheck: | ||
# enabled: true | ||
# instance: | ||
# leaseRenewalIntervalInSeconds: 1 | ||
# leaseExpirationDurationInSeconds: 2 | ||
# hostname: localhost |
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
Oops, something went wrong.