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: frontend/README.md
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ $ cd frontend
12
12
$ ./gradlew -p frontend clean assemble
13
13
```
14
14
15
-
And you can build and test the front by running
15
+
And you can build and test the frontend by running
16
16
17
17
```sh
18
18
$ cd frontend
@@ -21,6 +21,14 @@ $ ./gradlew build
21
21
22
22
You will find a jar file in frontend/server/build/libs file.
23
23
24
+
To continuously test your frontend changes during development (e.g. through out pytest integration tests in test/pytest) without continuously reinstalling TS you can create a symbolic link (ln -s) from ts/frontend/model-server.jar to frontend/server/build/libs/server-1.0.jar. That way you changes get picked up (after calling `./gradlew -p frontend clean assemble`) when you start TS.
25
+
26
+
When you create a PR with your changes it can happen that you see a formatting error during the CI testing.
27
+
To fix the format simply run this command and commit the changes:
28
+
```sh
29
+
$ cd frontend
30
+
$ ./gradlew format
31
+
```
24
32
### Starting frontend
25
33
26
34
Frontend web server using a configuration file to control the behavior of the frontend web server.
0 commit comments