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
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,13 +13,22 @@ To activate either mode please navigate to the frontend folder via `cd frontend`
13
13
14
14
Web mode: The default user is `admin` and the default password is `admin`.
15
15
16
-
###Generating JWT keys (web mode only)
16
+
## Generating JWT keys (web mode only)
17
17
18
18
To generate the keys necessary for authentication via JWT please run the following script once:
19
19
```
20
20
./backend/generate-keys.sh
21
21
```
22
22
23
+
## Database and Fuzzy Match
24
+
ProA uses fuzzy match so that the BPMN labels can be matched with some degree of tolerance, e.g. ignoring typos.
25
+
To this end, postgres levenshtein function is used, which needs to be activated by ececuting the following:
26
+
27
+
```CREATE EXTENSION fuzzystrmatch;```
28
+
29
+
Furthermore, in Azure before executing the above statement, the extension needs to be activated via: DB >> Settings >> Server parameters >> azure.extensions >> fuzzystrmatch;
30
+
31
+
23
32
## The Entire Application
24
33
25
34
In order to build an uber jar, which also contains the frontend, run the following in the root:
0 commit comments