You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-6Lines changed: 5 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -111,18 +111,17 @@ curl command (replace xxx.xxx.xxx with the token that you received in above comm
111
111
curl -X GET --header 'Accept: application/json' --header 'Authorization: xxx.xxx.xxx' 'http://localhost:9119/version'
112
112
```
113
113
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
118
117
```bash
119
118
# Navigate to PROJECT_FOLDER/webui (should contain package.json )
120
119
npm install
121
120
# build the project (this will put the files under dist folder)
122
-
ng build --prod --aot=false
121
+
ng build --prod --aot=true
123
122
```
124
123
125
-
### Install Backend (SpringBoot Java)
124
+
### Build Backend (SpringBoot Java)
126
125
```bash
127
126
# Maven Build : Navigate to the root folder where pom.xml is present
0 commit comments