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-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,10 +36,10 @@ The source-code can be directly checked-out through this repository. It contains
36
36
* make sure to set property `authType` of `auth` in `sss.conf.yaml` accordingly (either `csvFileAuth`or `oidc`)
37
37
* for `csvFileAuth` make sure to have `users.csv` (in your execution directory) filled with combinations of users' emails and passwords (i.e. "email@email.com;password")
38
38
* start SSS with `java -jar -Dlog4j.configuration=file:log4j.properties ./sss.jar`
39
-
* access Swagger UI from `http://tomcatPort:tomcatHost/sss.adapter.rest.v2/`
40
-
* access the REST API via requests to `http://tomcatPort:tomcatHost/sss.adapter.rest.v2/{API}/{API}/{OP or ID}`
39
+
* access Swagger UI from `http://localhost:8080/sss.adapter.rest.v2/`
40
+
* access the REST API via requests to `http://localhost:8080/sss.adapter.rest.v2/{API}/{API}/{OP or ID}`
41
41
*`API`: REST resource to be targeted
42
-
*`OP or ID`: path to the actual service call to be executed, e.g., GET to `http://tomcatPort:tomcatHost/sss.adapter.rest.v2/entities/entities/{entity}` gets information for a certain entity
42
+
*`OP or ID`: path to the actual service call to be executed, e.g., GET to `http://localhost:8080/sss.adapter.rest.v2/entities/entities/{entity}` gets information for a certain entity
43
43
44
44
## SSS service usage via Swagger UI
45
45
* to login use either GET or POST calls in `.../sss.adapter.rest.v2/#!/auth`
@@ -117,9 +117,9 @@ The source-code can be directly checked-out through this repository. It contains
117
117
## SSS deployment from source code
118
118
* run `mvn clean install` on project `sss.root` to have
0 commit comments