Skip to content

Commit

Permalink
add configuration server for prod
Browse files Browse the repository at this point in the history
  • Loading branch information
qyu4x committed Jun 30, 2023
1 parent 8303580 commit 02143c7
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ private List<Server> servers() {
serverDevelopment.setUrl("http://localhost:8080/");
serverDevelopment.setDescription("Main server for Development");

Server serverProduction = new Server();
serverProduction.setUrl("https://alpha-omega-api-production.up.railway.app");
serverProduction.setDescription("Main server for Production");

servers.add(serverDevelopment);
return servers;
}
Expand Down

0 comments on commit 02143c7

Please sign in to comment.