Prepare for env variables
parent
23def0d645
commit
52be9217c6
2
config
2
config
|
@ -1 +1 @@
|
||||||
Subproject commit 74863b5222f054ae8f394f986f4524f29178b40b
|
Subproject commit 7d760f030f4ad1d8829503796c009f4e107fc491
|
|
@ -1,5 +1,5 @@
|
||||||
spring.application.name=steleks-proxy
|
spring.application.name=eureka-service
|
||||||
# N.B. this is the default:
|
# N.B. this is the default:
|
||||||
spring.cloud.config.uri=http://localhost:8888
|
spring.cloud.config.uri=${CONFIG_SERVER_URI:http://localhost:8888}
|
||||||
spring.cloud.config.username=root
|
spring.cloud.config.username=${CONFIG_SERVER_USERNAME:root}
|
||||||
spring.cloud.config.password=root
|
spring.cloud.config.password=${CONFIG_SERVER_PASSWORD:root}
|
|
@ -1,5 +1,5 @@
|
||||||
spring.application.name=events
|
spring.application.name=events
|
||||||
# N.B. this is the default:
|
# N.B. this is the default:
|
||||||
spring.cloud.config.uri=http://localhost:8888
|
spring.cloud.config.uri=${CONFIG_SERVER_URI:http://localhost:8888}
|
||||||
spring.cloud.config.username=root
|
spring.cloud.config.username=${CONFIG_SERVER_USERNAME:root}
|
||||||
spring.cloud.config.password=root
|
spring.cloud.config.password=${CONFIG_SERVER_PASSWORD:root}
|
|
@ -1,5 +1,5 @@
|
||||||
spring.application.name=steleks-proxy
|
spring.application.name=steleks-proxy
|
||||||
# N.B. this is the default:
|
# N.B. this is the default:
|
||||||
spring.cloud.config.uri=http://localhost:8888
|
spring.cloud.config.uri=${CONFIG_SERVER_URI:http://localhost:8888}
|
||||||
spring.cloud.config.username=root
|
spring.cloud.config.username=${CONFIG_SERVER_USERNAME:root}
|
||||||
spring.cloud.config.password=root
|
spring.cloud.config.password=${CONFIG_SERVER_PASSWORD:root}
|
|
@ -1,5 +1,5 @@
|
||||||
spring.application.name=teams
|
spring.application.name=teams
|
||||||
# N.B. this is the default:
|
# N.B. this is the default:
|
||||||
spring.cloud.config.uri=http://localhost:8888
|
spring.cloud.config.uri=${CONFIG_SERVER_URI:http://localhost:8888}
|
||||||
spring.cloud.config.username=root
|
spring.cloud.config.username=${CONFIG_SERVER_USERNAME:root}
|
||||||
spring.cloud.config.password=root
|
spring.cloud.config.password=${CONFIG_SERVER_PASSWORD:root}
|
|
@ -1,5 +1,5 @@
|
||||||
spring.application.name=users
|
spring.application.name=users
|
||||||
# N.B. this is the default:
|
# N.B. this is the default:
|
||||||
spring.cloud.config.uri=http://localhost:8888
|
spring.cloud.config.uri=${CONFIG_SERVER_URI:http://localhost:8888}
|
||||||
spring.cloud.config.username=root
|
spring.cloud.config.username=${CONFIG_SERVER_USERNAME:root}
|
||||||
spring.cloud.config.password=root
|
spring.cloud.config.password=${CONFIG_SERVER_PASSWORD:root}
|
||||||
|
|
Reference in New Issue