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
* Allow multiple themes
* Rename execution id
* Replace favicon in case theme defines one
* Fix cli dependency for multiple themes
* use dynamic mta-cli artifact
* Set Windup default theme
* Set Windup default theme
* Set Windup default theme
## Common steps: Register the client in Keycloak for mta-web
51
+
## Common steps: Register the client in Keycloak for windup-web
52
52
53
53
* Go to the Keycloak admin console [http://localhost:8280/auth/admin/](http://localhost:8280/auth/admin/) (or at [8080](http://localhost:8080/auth/admin/) for embedded)
54
54
* Setup an admin user and password here
55
55
* Then navigate to [Keycloak admin](http://localhost:8280/auth/admin/) and log in
56
-
* Set up a new realm called "mta"
56
+
* Set up a new realm called "windup"
57
57
* Create a new Role called "user"
58
58
* Add this new role to the "Default Roles"
59
59
* Create a new test user(s) for this realm. Assign the user role to it.
60
60
61
-
* Create a new client with ID `mta-web`, root URL: [http://localhost:8080/mta-web/](http://localhost:8080/mta-web/)
61
+
* Create a new client with ID `windup-web`, root URL: [http://localhost:8080/windup-web/](http://localhost:8080/windup-web/)
62
62
* On the settings page, make sure that the following URL is listed as Valid Redirect URIs (add if if it is missing):
63
-
*`http://localhost:8080/mta-web/*`
63
+
*`http://localhost:8080/windup-web/*`
64
64
65
65
* Click on the "Installation" tab, and select the "Keycloak OIDC JBoss Subsystem XML" format option
66
-
* With the MTA's server off, open up `standalone-full.xml` and paste this text into the`urn:jboss:domain:keycloak:1.1` subsystem element
67
-
* Change the `WAR MODULE NAME.war` section to the war name (`mta-web.war`)
66
+
* With the WINDUP's server off, open up `standalone-full.xml` and paste this text into the`urn:jboss:domain:keycloak:1.1` subsystem element
67
+
* Change the `WAR MODULE NAME.war` section to the war name (`windup-web.war`)
68
68
* Now we are going to move the Keycloak key and URL to system properties, so they are accessible from the app.
69
69
Add the following system properties being sure to replace the key with the one from the copied section:
Copy file name to clipboardExpand all lines: addons/messaging-executor/impl/src/main/java/org/jboss/windup/web/messaging/executor/HttpPostSerializer.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -89,7 +89,7 @@ public Message serializeStatusUpdate(JMSContext context, Long projectId, WindupE
Copy file name to clipboardExpand all lines: ui-pf4/src/main/webapp/README.md
+10-10
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# MTA Web Console UI
1
+
# WINDUP Web Console UI
2
2
3
3
UI based on [Patternfly 4](https://www.patternfly.org/v4/) and [ReactJS](https://reactjs.org/). This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
4
4
@@ -11,34 +11,34 @@ You need:
11
11
12
12
## Prepare the backend
13
13
14
-
You need to have MTA Web Console running. You can download it from [Red Hat Developers](https://developers.redhat.com/products/mta/download) or build it yourself from the source code following the instructions [building-the-windup-project](https://github.com/windup/windup-web#building-the-windup-project)
14
+
You need to have WINDUP Web Console running. You can download it from [Red Hat Developers](https://developers.redhat.com/products/mta/download) or build it yourself from the source code following the instructions [building-the-windup-project](https://github.com/windup/windup-web#building-the-windup-project)
15
15
16
-
- Run the `$MTA_HOME/run_mta.sh` and wait until the server starts. Verify the server is running opening http://localhost:8080 in your browser.
16
+
- Run the `$WINDUP_HOME/run_windup.sh` and wait until the server starts. Verify the server is running opening http://localhost:8080 in your browser.
17
17
- Configure Keycloak's client to have http://localhost:3000 as a valid redirect URI, folow the steps below to do it.
0 commit comments