Skip to content

Commit 2af0415

Browse files
committed
updated readme
1 parent a2b7cfb commit 2af0415

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -111,18 +111,17 @@ curl command (replace xxx.xxx.xxx with the token that you received in above comm
111111
curl -X GET --header 'Accept: application/json' --header 'Authorization: xxx.xxx.xxx' 'http://localhost:9119/version'
112112
```
113113

114-
### Install Frontend (optional step)
115-
Code for frontend is allready compiled and saved under the webui/dist
116-
when building the backend app (maven) it will pickup the code from here. However if you modified the frontend
117-
code and want your changes to get reflected then execute a frontend build
114+
### Build Frontend (optional step)
115+
Code for frontend is allready compiled and saved under the ```webui/dist```
116+
when building the backend app (using maven) it will pickup the code from ```webui/dist```. However if you modified the frontend code and want your changes to get reflected then you must build the frontend
118117
```bash
119118
# Navigate to PROJECT_FOLDER/webui (should contain package.json )
120119
npm install
121120
# build the project (this will put the files under dist folder)
122-
ng build --prod --aot=false
121+
ng build --prod --aot=true
123122
```
124123

125-
### Install Backend (SpringBoot Java)
124+
### Build Backend (SpringBoot Java)
126125
```bash
127126
# Maven Build : Navigate to the root folder where pom.xml is present
128127
mvn clean install

0 commit comments

Comments
 (0)