Skip to content

Commit

Permalink
Prod configuration is required for AppContextSpec
Browse files Browse the repository at this point in the history
  • Loading branch information
flashingpumpkin committed Jun 26, 2017
1 parent 556c69d commit dc8e564
Showing 1 changed file with 24 additions and 5 deletions.
29 changes: 24 additions & 5 deletions conf/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ Test {
port = 8090
}
service-locator {
host=localhost
port=9602
host = localhost
port = 9602
}
}
}
Expand Down Expand Up @@ -154,14 +154,33 @@ Dev {
port = 8090
}
service-locator {
host=localhost
port=9602
host = localhost
port = 9602
}
}
}
}

Prod {
microservice {
services {
auth {
host = auth.protected.mdtp
port = 80
}
epaye = {
host = epaye.protected.mdtp
port = 80
}
service-locator {
host = service-locator.protected.mdtp
port = 80
}
}
}
}

api {
context = "epaye-api"
status="PROTOTYPED"
status = "PROTOTYPED"
}

0 comments on commit dc8e564

Please sign in to comment.