From f2d89ec87d8da3f4cc4fd5aeb8fb113dc41798ad Mon Sep 17 00:00:00 2001 From: Leonardo Trevizo Date: Sat, 4 Oct 2025 17:45:46 -0600 Subject: [PATCH] Added server port property Added port property to server within application.yml file, and set the port to 9090 to make the server run on this port. --- src/main/resources/application.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 4a0cb95..ad1d987 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -1,3 +1,6 @@ +server: + port: 9090 + spring: application: name: inventory-manager-spark