From f8dce425fc3d7272b7482c06d7335425f84e003d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=A1n=20Mach=C3=A1=C4=8Dek?= <xmachac5@fi.muni.cz>
Date: Sun, 26 Mar 2023 23:56:43 +0200
Subject: [PATCH] DOC: edit readme

---
 README.md           | 11 +++++++++--
 core-client/pom.xml |  2 +-
 2 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index 65a4903..66d3859 100644
--- a/README.md
+++ b/README.md
@@ -12,10 +12,17 @@ Create an information system managing flight records at an airport. The system s
 ![Alt text](/diagrams/UseCase-Diagram.jpg "use case diagram")
 
 ## Installation
-Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection.
+### To build with Maven
+    `$mvn clean install`
+### To run app on localhost
+    `$mvn spring-boot:run - in each microservice separatly`
 
 ## Usage
-Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README.
+### Used ports
++ Authorization - port 8083
++ Core - port 8080
++ Weather - port 8088
++ Report - port 8085
 
 ## Authors
 + Martin SlovĂ­k
diff --git a/core-client/pom.xml b/core-client/pom.xml
index 888decc..dda6246 100644
--- a/core-client/pom.xml
+++ b/core-client/pom.xml
@@ -32,7 +32,7 @@
               <generatorName>java</generatorName>
               <apiPackage>cz.muni.fi.pa165.core.client</apiPackage>
               <modelPackage>cz.muni.fi.pa165.core.client.model</modelPackage>
-              <invokerPackage>cz.muni.chat.fi.pa165.core.client.invoker</invokerPackage>
+              <invokerPackage>cz.muni.fi.pa165.core.client.invoker</invokerPackage>
               <verbose>false</verbose>
               <generateApiTests>false</generateApiTests>
               <generateModelTests>false</generateModelTests>
-- 
GitLab