Created
June 21, 2017 11:32
-
-
Save ZiiSolutions/030ec51612e27f68a2f123ad82118f66 to your computer and use it in GitHub Desktop.
application.yml entitlement api
This file contains hidden or 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
# | |
# Spring Service Configuration | |
# | |
server: | |
port: 8080 | |
# | |
# Microservice Service Registration | |
# | |
microservice: | |
basePath: services | |
server: | |
name: entitlement/common/api/v2 | |
# | |
# General Information | |
# | |
info: | |
build: | |
artifact: @project.artifactId@ | |
name: @project.name@ | |
description: @project.description@ | |
version: @project.version@ | |
# | |
# Zookeeper Connection | |
# | |
zookeeper: | |
connectionString: localhost:2181 | |
retry: | |
wait: 1000 | |
count: 3 | |
# | |
# MongoDB Connection | |
# | |
mongo: | |
connectionString: localhost:27017 | |
db: entitlements_v2 | |
user: root | |
password: Change1t |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment