forked from blcham/record-manager-ui
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into add-role-buttons
- Loading branch information
Showing
30 changed files
with
424 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
RECORD_MANAGER_API_URL=http://localhost:1235/record-manager/services/record-manager-server | ||
RECORD_MANAGER_APP_TITLE=Record Manager | ||
RECORD_MANAGER_DEV_SERVER_PORT=3000 | ||
RECORD_MANAGER_PROD_SERVER_PORT=8080 | ||
RECORD_MANAGER_LANGUAGE=cs | ||
RECORD_MANAGER_NAVIGATOR_LANGUAGE=true | ||
RECORD_MANAGER_BASENAME=/ | ||
RECORD_MANAGER_EXTENSIONS=supplier | ||
RECORD_MANAGER_AUTHENTICATION=oidc | ||
RECORD_MANAGER_AUTH_SERVER_URL=http://localhost:1235/record-manager/services/auth/realms/record-manager | ||
RECORD_MANAGER_AUTH_CLIENT_ID=record-manager |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Public origin of URL where Record Manager UI will run, e.g. https://kbss.fel.cvut.cz, https://kbss.fel.cvut.cz:8080, http://localhost. ! This option can be used only with running reverse proxy pointing to http://localhost:$INTERNAL_HOST_PORT/record-manager ! | ||
#PUBLIC_ORIGIN=http://localhost | ||
|
||
# Path to root Record Manager application (by default it is set to "/record-manager") ! This option can be used only with running reverse proxy pointing to http://localhost:$INTERNAL_HOST_PORT/record-manager ! | ||
#RECORD_MANAGER_ROOT_PATH=/record-manager-example | ||
|
||
# Prefix for name of all docker containers | ||
RECORD_SET_NAME=kauth-example | ||
|
||
# Host machine port that provides main entrypoint for the application. The application will be locally accessible at http://localhost:$INTERNAL_HOST_PORT/$RECORD_MANAGER_ROOT_PATH (by default it is set to "1235") | ||
#INTERNAL_HOST_PORT=1235 | ||
|
||
# URL to form generation service | ||
FORMGEN_SERVICE_URL=http://s-pipes-engine:8080/s-pipes/service?_pId=clone-form | ||
|
||
RECORD_MANAGER_APP_TITLE=Record Manager | ||
|
||
LANGUAGE=en |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<!-- Record manager Nginx reverse proxy--> | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title> | ||
<!--# echo var="status" default="" --> | ||
| Record manager | ||
</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<!--# if expr="$status = 502" --> | ||
<meta http-equiv="refresh" content="2"> | ||
<!--# endif --> | ||
</head> | ||
<style type="text/css"> | ||
body { | ||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | ||
color: #fff; | ||
height: 100vh; | ||
margin: 0; | ||
background: #263238 linear-gradient(5deg, #057fa5 0%, #263238 100%); | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
</style> | ||
<body> | ||
<!--# if expr="$status = 502" --> | ||
<h1>The application is currently being updated</h1> | ||
<p>You will be redirected to the new version in a few seconds.</p> | ||
<p>If you see this message for more than a minute, something has gone wrong.</p> | ||
<!--# else --> | ||
<h1>Sorry, something went wrong.</h1> | ||
<p><!--# echo var="status" default="" --></p> | ||
<!--# endif --> | ||
</body> | ||
</html> |
Oops, something went wrong.