Skip to content

Commit

Permalink
deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
jyunmitch committed Jun 27, 2024
0 parents commit 2277b1e
Show file tree
Hide file tree
Showing 2,304 changed files with 168,034 additions and 0 deletions.
28 changes: 28 additions & 0 deletions 404.html

Large diffs are not rendered by default.

52 changes: 52 additions & 0 deletions assets/add-rest-api/DemoController.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
package org.entando.training.controllers;

import org.entando.training.services.DemoService;
import org.entando.entando.web.common.annotation.RestAccessControl;
import org.json.JSONObject;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

import java.io.IOException;
import java.util.Map;

@RestController
public class DemoController {


@Autowired
DemoService demoService;

private final Logger logger = LoggerFactory.getLogger(getClass());

@RestAccessControl(permission = "")
@RequestMapping(value = "/fsi/leaderboard", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
public Map<String, Object> fetchLeaderboard() throws IOException {
JSONObject resp = null;
try {
resp = demoService.getLeaderboardJson();
}catch(Exception e) {
logger.error("Failed to get leaderboard ", e);
}

return resp.toMap();
}

@RestAccessControl(permission = "")
@RequestMapping(value = "/fsi/graphData/{type}", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
public Map<String, Object> fetchGraphData(@PathVariable String type) throws IOException {
return demoService.getDemoGraphJson(type).toMap();
}

@RestAccessControl(permission = "")
@RequestMapping(value = "/fsi/orderPaymentData", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
public Map<String, Object> fetchOrderPaymentData() throws IOException {
return demoService.getTimeSeriesJson().toMap();
}

}
101 changes: 101 additions & 0 deletions assets/add-rest-api/DemoService.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
package org.entando.training.services;

import org.json.JSONArray;
import org.json.JSONObject;
import org.springframework.stereotype.Service;

import java.text.SimpleDateFormat;
import java.util.Arrays;
import java.util.Calendar;
import java.util.List;

@Service
public class DemoService {


private static String graphJson = "{ min: 0, max:100, \"value\": 50}";

private static List<Integer> orders = Arrays.asList(800, 500, 650, 700, 500, 450, 800, 575, 485, 850, 700, 770,
500, 575, 700, 765, 300, 850, 850, 999, 475, 999, 550, 780,
650, 760, 850, 850, 175, 550, 999);

private static List<Integer> payments = Arrays.asList(7, 5, 3, 8, 9, 7, 4, 3, 6, 7, 8, 6,
3, 4, 11, 7, 7, 11, 11, 6, 6, 7, 10, 13,
7, 8, 8, 7, 5, 7, 25);

private static int[] tasksCompleted = {0, 30, 25};
private static int[] firstResponse = {144, 198, 195, 95};
private static int[] resolution = {144, 198, 191, 88};
private static int[] satisfaction = {144, 198, 198, 100};

private static String leaderboardJson = "{\"leaderboard\":[" +
"{\"rank\": 1, \"name\": \"Meg Foley\", \"value\": 200}," +
"{\"rank\": 2, \"name\": \"Eric Marts\", \"value\": 188}," +
"{\"rank\": 3, \"name\": \"Walter Ambu\", \"value\": 175}" +
"]}";
private static SimpleDateFormat fmt = new SimpleDateFormat("dd/MM/yyyy");

public JSONObject getDemoGraphJson(String key){

if(key.equals("tasks")) {
return getDemoGraphJson(tasksCompleted[0], tasksCompleted[1], tasksCompleted[2], tasksCompleted[3]);
}else if (key.equals("firstResponse")){
return getDemoGraphJson(firstResponse[0], firstResponse[1], firstResponse[2], firstResponse[3]);
}else if(key.equals("resolution")){
return getDemoGraphJson(resolution[0], resolution[1], resolution[2], resolution[3]);
}else if(key.equals("satisfaction")){
return getDemoGraphJson(satisfaction[0], satisfaction[1], satisfaction[2], satisfaction[3]);
}

return getDemoGraphJson(0, 100, 50, 50);
}
public JSONObject getDemoGraphJson(int min, int max, int value, int percentage){

JSONObject json = new JSONObject(graphJson);
json.put("min", min);
json.put("max", max);
json.put("value", value);
json.put("percentage", percentage);

return json;
}

public JSONObject getLeaderboardJson(){
return new JSONObject(leaderboardJson);
}

public JSONObject getTimeSeriesJson() {
JSONObject timeseries = new JSONObject();

JSONArray labels = new JSONArray();
JSONArray priceData = new JSONArray();
JSONArray orderData = new JSONArray();

Calendar cal = Calendar.getInstance();
cal.set(Calendar.MONTH, 0);
cal.set(Calendar.DAY_OF_MONTH, 1);

for(int i =0;i<31;i++){
labels.put(fmt.format(cal.getTime()));
orderData.put(orders.get(i));
priceData.put(payments.get(i));
cal.add(Calendar.DAY_OF_MONTH, 1);
}

JSONArray datasets = new JSONArray();
JSONObject dataPrice = new JSONObject();
JSONObject dataOrder = new JSONObject();

dataPrice.put("data", priceData);
dataOrder.put("data", orderData);

datasets.put(dataPrice);
datasets.put(dataOrder);

JSONObject mainData = new JSONObject();
mainData.put("datasets", datasets);
mainData.put("labels", labels);
timeseries.put("data ", mainData);
return timeseries;
}
}
27 changes: 27 additions & 0 deletions assets/add-rest-api/commonConfig.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xmlns:p="http://www.springframework.org/schema/p" xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:security="http://www.springframework.org/schema/security"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">


<context:component-scan base-package="org.entando.training" />


<bean id="entandoInterceptor"
class="org.entando.entando.web.common.interceptor.EntandoOauth2Interceptor" />
<bean id="activityStreamInterceptor"
class="org.entando.entando.web.common.interceptor.ActivityStreamInterceptor" />

<mvc:interceptors>
<ref bean="entandoInterceptor" />
<ref bean="activityStreamInterceptor" />
</mvc:interceptors>

</beans>
1 change: 1 addition & 0 deletions assets/css/0.styles.2b48498f.css

Large diffs are not rendered by default.

Binary file added assets/img/2022-04-22.ba59c8c4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/2022-05-03-image1.3d13abeb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/2022-05-03-image2.62798731.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/2022-05-03-image3.9ec1c3c7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/2022-06-15-aviard1.71f30006.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/2022-06-15-aviard2.2cd3941e.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/2022-06-15-aviard3.130d711e.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/2022-06-15-image1.b17f6e59.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/2022-06-15-image2.4cfb3ac6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/2022-06-15-image3.3fff6049.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/2022-06-15-image4.42066049.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/2022-06-15-image5.4eb0115e.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/2022-06-15-image6.b2b99c4b.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/2022-06-15-image7.9985cbb7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/2022-08-11-acp-process.e22b8f96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/2022-08-11-publishing.dbeb5998.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/2022-12-19-image1.a29a633c.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/2022-12-19-image10.4b10a023.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/2022-12-19-image2.b5271b75.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/2022-12-19-image3.dbeb5998.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/2022-12-19-image4.881ec38a.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/2022-12-19-image5.3e25ce84.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/2022-12-19-image6.27f3bd0a.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/2022-12-19-image7.0b73eee0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/2022-12-19-image8.387d8c06.png
Binary file added assets/img/2022-12-19-image9.5b445a55.png
Binary file added assets/img/2023-01-26-process.ba935f89.png
Binary file added assets/img/2023-01-26.4e5eaef2.png
Binary file added assets/img/2023-03-17-image2.1c1038e8.png
Binary file added assets/img/2023-03-17-image3.08201cbc.png
Binary file added assets/img/2023-08-17-spring-init.fe1ace24.png
Binary file added assets/img/AlertIcons.a6dc0e3d.png
Binary file added assets/img/Content1.3ad6e072.png
Binary file added assets/img/Content1.70e3ca08.png
Binary file added assets/img/Content1.d1b43a81.png
Binary file added assets/img/Content2.0d5f6dcb.png
Binary file added assets/img/Content2.28a94533.png
Binary file added assets/img/Content2.4a60cecc.png
Binary file added assets/img/Content3.679ded8b.png
Binary file added assets/img/Content3.786fc4f3.png
Binary file added assets/img/Content3.94c90324.png
Binary file added assets/img/Content4.3557fd52.png
Binary file added assets/img/Content4.a6359635.png
Binary file added assets/img/Content5.08f6d66f.png
Binary file added assets/img/Content5.92572a30.png
Binary file added assets/img/Content5.cb0e77f2.png
Binary file added assets/img/Content6.061230f9.png
Binary file added assets/img/Content6.a52d67e0.png
Binary file added assets/img/Content6.b55e6df0.png
Binary file added assets/img/Content7.5e25774d.png
Binary file added assets/img/Content7.73de874a.png
Binary file added assets/img/Content7.cba8256b.png
Binary file added assets/img/Content8.7d0663c0.png
Binary file added assets/img/Content8.888f2e82.png
Binary file added assets/img/Content8.8c087e58.png
Binary file added assets/img/ContentModel1.17fdc0c1.png
Binary file added assets/img/ContentModel2.05a15e58.png
Binary file added assets/img/ContentModel3.01f97f18.png
Binary file added assets/img/ContentTemplate1.818523c4.png
Binary file added assets/img/ContentTemplate1.b667e6be.png
Binary file added assets/img/ContentTemplate2.21b8ed9e.png
Binary file added assets/img/ContentTemplate2.6e679af4.png
Binary file added assets/img/ContentTypes1.7560c338.png
Binary file added assets/img/ContentTypes2.022b770a.png
Binary file added assets/img/ContentTypes2.21f6cecf.png
Binary file added assets/img/ContentTypes2.52a50cb7.png
Binary file added assets/img/ContentTypes3.71087e4a.png
Binary file added assets/img/ContentTypes3.75a32bf6.png
Binary file added assets/img/ContentTypes3.c5fcf221.png
Binary file added assets/img/ContentTypes4.8fedbed4.png
Binary file added assets/img/ContentTypes4.d64eb073.png
Binary file added assets/img/ContentTypes5.4ddd7e62.png
Binary file added assets/img/ContentTypes5.fcc32127.png
Binary file added assets/img/ContentTypes6.839d6815.png
Binary file added assets/img/ContentTypes6.f1b9f50c.png
Binary file added assets/img/ContentTypes7.4b328c0b.png
Binary file added assets/img/ContentTypes7.7983fab1.png
Binary file added assets/img/DigitalAssets1.064cc3be.png
Binary file added assets/img/DigitalAssets2.2b75619a.png
Binary file added assets/img/DigitalAssets2.32df59f9.png
Binary file added assets/img/DigitalAssets2.6831ae45.png
Binary file added assets/img/DigitalAssets3.5ca6f9fa.png
Binary file added assets/img/DigitalAssets3.c4d3836a.png
Binary file added assets/img/DigitalAssets3.f15f2970.png
Binary file added assets/img/DigitalAssets4.30a4301c.png
Binary file added assets/img/DigitalAssets4.3f5015ab.png
Binary file added assets/img/DigitalAssets5.1deaad83.png
Binary file added assets/img/DigitalAssets5.7bce06ee.png
Binary file added assets/img/Homepage.135c4311.png
Binary file added assets/img/HomepageSelect.2795ca74.png
Binary file added assets/img/InstallPlan.4bd2ecaf.png
Binary file added assets/img/Installed.3db24a94.png
Binary file added assets/img/Installed.922f893a.png
Binary file added assets/img/ManageUsersAuth.2b62383f.png
Binary file added assets/img/ManageUsersNoAuth.f3f3f9a2.png
Binary file added assets/img/OpenShift_Header.17d5818a.png
Binary file added assets/img/Publish1.97c4773d.png
Binary file added assets/img/Publish1.c9d272d4.png
Binary file added assets/img/Publish1.f8e40b3d.png
Binary file added assets/img/Publish2.412f7ce0.png
Binary file added assets/img/Publish2.6f8f3db1.png
Binary file added assets/img/Publish2.e826f565.png
Binary file added assets/img/Publish3.0845b074.png
Binary file added assets/img/Publish3.3d12209b.png
Binary file added assets/img/Publish3.ddd391c0.png
Binary file added assets/img/Publish4.2ebeb5df.png
Binary file added assets/img/Publish4.388b6b73.png
Binary file added assets/img/Publish4.d688ea76.png
Binary file added assets/img/Publish5.1bdebcb9.png
Binary file added assets/img/Publish5.63565680.png
Binary file added assets/img/Publish5.fc27ef89.png
Binary file added assets/img/Publish5b.290725d4.png
Binary file added assets/img/Publish5b.6eb8a7ea.png
Binary file added assets/img/Publish5c.7cc35cec.png
Binary file added assets/img/Publish6.cc51fe30.png
Binary file added assets/img/Publish7.51d90f4a.png
Binary file added assets/img/Repository.549d2356.png
Binary file added assets/img/Repository.b74bf23c.png
Binary file added assets/img/SeedCard.5cb847f6.png
Binary file added assets/img/SeedCardNG.9c86213f.png
Binary file added assets/img/SignUp.e3bc2ae9.png
Binary file added assets/img/TransactionTable.8a42324a.png
Binary file added assets/img/add-permissions-role.13fe05bb.png
Binary file added assets/img/add-user.2d03d858.png
Binary file added assets/img/angular-micro-frontend.04c2a9d5.png
Binary file added assets/img/app-builder.10a03f4b.png
Binary file added assets/img/app-builder.2807d6d2.png
Binary file added assets/img/assets-add.ed1a6fc2.png
Binary file added assets/img/assets-edit-image.4474282a.png
Binary file added assets/img/assets-filebrowser.09b01125.png
Binary file added assets/img/assets-info.bada9f97.png
Binary file added assets/img/assets-manage.037bc7e4.png
Binary file added assets/img/assets-manage.a045aa4a.png
Binary file added assets/img/assign-roles.c8f52211.png

Large diffs are not rendered by default.

107 changes: 107 additions & 0 deletions assets/img/begin-developing-with-entando.42ae5f8d.svg
Binary file added assets/img/bundle-filtering.9614d3c2.png
Binary file added assets/img/clustered-logs.56f7b97d.png
Binary file added assets/img/cms_content_image_add.e9f48187.png
Binary file added assets/img/cms_content_type_image.af912117.png
Binary file added assets/img/cms_content_with_image.7d5f68bf.png
Binary file added assets/img/cms_digital_assets_crop.6c19b387.png
Binary file added assets/img/cms_file_browser.5685493d.png
Binary file added assets/img/component-gen-flow.15bc61e9.png
Binary file added assets/img/component-types.0e439a4e.png
Binary file added assets/img/component-types.daa42b26.png
Binary file added assets/img/concepts.54e89ec0.png
Binary file added assets/img/concepts.b07276e2.png
Binary file added assets/img/content-actions.e0f078b5.png
Binary file added assets/img/content-add.b39d2019.png
Binary file added assets/img/content-filters.2012ce21.png
Binary file added assets/img/content-list_config-page.7e33a519.png
Binary file added assets/img/content-list_query.75c9ccda.png
Binary file added assets/img/content-management.94b68f5a.png
Binary file added assets/img/content-publish.4c37c53d.png
Binary file added assets/img/content-setting.0ae917f1.png
Binary file added assets/img/content-table-view.7754b752.png
Binary file added assets/img/content_collection-type.be942daf.png
Binary file added assets/img/content_config-page.f8a6ca72.png
Binary file added assets/img/content_template1.9271fa7a.png
Binary file added assets/img/content_template2.4c708e79.png
Binary file added assets/img/content_type-populated.1d879960.png
Binary file added assets/img/content_types1.957d3ea1.png
Binary file added assets/img/content_types2.c448f6d5.png
Binary file added assets/img/content_types3.fef61374.png
Binary file added assets/img/content_types4.003a657b.png
Binary file added assets/img/content_types5.7171970d.png
Binary file added assets/img/cp-add-customer.8328e69b.png
Binary file added assets/img/cp-admin.1972f7a1.png
Binary file added assets/img/cp-identity-userrole.9773f0e4.png
Binary file added assets/img/cp-idmanagement-main.93148f5e.png
Binary file added assets/img/cp-landing-page.de4f92de.png
Binary file added assets/img/cp-open-ticket.206d19bd.png
Binary file added assets/img/cp-public-landing-page.3797b76a.png
Binary file added assets/img/customer-portal.5cb93620.png
Binary file added assets/img/customer-portal.92759a52.png
Binary file added assets/img/development-process.8e8faa42.jpg
Binary file added assets/img/ecm-flow.5e59945f.png
Binary file added assets/img/ecr-architecture.1101d571.png
Binary file added assets/img/ecr-architecture.1af1cfcf.png
Binary file added assets/img/ecr-architecture.224007f3.png
Binary file added assets/img/ecr-page.10fbd6e0.png
Binary file added assets/img/ecr-page.5342c4c7.png
Binary file added assets/img/ecr-page.90c167b6.png
Binary file added assets/img/ecr-page.f34be81e.png
Binary file added assets/img/edit-widget-screen-2.798d0990.png
Binary file added assets/img/edit-widget-screen.47019c90.png
Binary file added assets/img/entando-app-builder.129380b5.png
Binary file added assets/img/entando-app-builder.12987ba6.png
Binary file added assets/img/entando-app-builder.2807d6d2.png
Binary file added assets/img/entando-app-builder.9ba6551c.png
3 changes: 3 additions & 0 deletions assets/img/entando-architecture-v1.3.20bfa2ca.svg

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions assets/img/entando-architecture-v1.5.7f487366.svg

Large diffs are not rendered by default.

Binary file added assets/img/entando-architecture.42f45818.png
Binary file added assets/img/entando-architecture.d35469cf.png
Binary file added assets/img/entando-architecture.d5be62f0.png
Binary file added assets/img/entando-architecture.ea58a9e1.png
Binary file added assets/img/entando-login.0d7dcc2a.png
Binary file added assets/img/entando-login.248b67c1.png
Binary file added assets/img/entando-login.9fc6deff.png
Binary file added assets/img/entando-login.f45454ea.png
Binary file added assets/img/find-admin.8eebfd52.png
Binary file added assets/img/find-roles.3164de7d.png
3 changes: 3 additions & 0 deletions assets/img/github.db99e34f.svg
Binary file added assets/img/hub-actions.682c93ee.png
Binary file added assets/img/hub-add.0012e6dc.png
Binary file added assets/img/hub-add.8ea04cb6.png
Binary file added assets/img/hub-add.d83d829d.png
Binary file added assets/img/hub-ui.08fadaef.png
Binary file added assets/img/hub-v1.0cb8495b.png
Binary file added assets/img/hub-v1.fb612f98.png
Binary file added assets/img/hub-versions.b9ec23b1.png
Binary file added assets/img/import-keycloak.a966146c.png
Binary file added assets/img/infinispan-caching.7a9cc198.png
Binary file added assets/img/install-bundles.0c736118.png
Binary file added assets/img/install-bundles.55776493.png
Binary file added assets/img/jhipster-jdl.613b27ea.png
Binary file added assets/img/keycloak-arch-high-level.47cccaab.png
Binary file added assets/img/local-hub-page.90c167b6.png
83 changes: 83 additions & 0 deletions assets/img/logo-jhipster.b67f7b70.svg
Binary file added assets/img/multiple-deployment.a02059a1.png
Binary file added assets/img/multitenancy.ad9d7a82.png
Binary file added assets/img/new-process-form.6239f89f.png
Binary file added assets/img/new-widget-screen.5f22e2a2.png
Binary file added assets/img/new-widget-screen.76df2d66.png
Binary file added assets/img/new-widget-screen.983cd1f9.png
Binary file added assets/img/new-widget-screen.cd5a1175.png
Binary file added assets/img/new-widget-screen.f98fff37.png
Binary file added assets/img/openshift-routes-panel.b4956e8d.png
Binary file added assets/img/page-design.04ab7dd6.png
Binary file added assets/img/page-design.b9bf89cd.png
Binary file added assets/img/pda-architecture.55cf467c.png
Binary file added assets/img/pda-architecture.ffbbfd30.png
Binary file added assets/img/pda-install.1d11e196.png
Binary file added assets/img/pda-install.7e3e361c.png
Binary file added assets/img/pods.07216513.png
Binary file added assets/img/pods.432103e9.png
Binary file added assets/img/postman-add-redirect-uri.0c1e63d8.png
Binary file added assets/img/postman-add-request.1ae38300.png
Binary file added assets/img/postman-add-variables.2a8fcda6.png
Binary file added assets/img/postman-auth-from-parent.c8454167.png
Binary file added assets/img/postman-create-collection.23c59cd2.png
Binary file added assets/img/postman-headers.388151ed.png
Binary file added assets/img/postman-log-into-app.9fc6deff.png
Binary file added assets/img/postman-log-into-app.cdae91d5.png
Binary file added assets/img/postman-loggin-into-app.5906728e.png
Binary file added assets/img/publish_page1.5ef01569.png
Binary file added assets/img/publish_page2.d5deb6cc.png
Binary file added assets/img/publish_page3.e2e39aa5.png
Binary file added assets/img/publish_page4.1ba5c176.png
Binary file added assets/img/publish_page5.91cd8e67.png
Binary file added assets/img/publish_page5b.4586a059.png
Binary file added assets/img/publish_page6.6df7181c.png
Binary file added assets/img/publishing-process.27ddfaf4.jpg
Binary file added assets/img/react-micro-frontend.468a6796.png
Binary file added assets/img/react-micro-frontend.46b221bf.png
Binary file added assets/img/react-micro-frontend.e1fb6118.png
Binary file added assets/img/redis-caching.25e28501.png
Binary file added assets/img/redis-caching.7672d54a.png
Binary file added assets/img/sd-alert-icons.a6dc0e3d.png
Binary file added assets/img/sd-cloud-hub.58352cb6.png
Binary file added assets/img/sd-cloud-hub.b049b4d0.png
Binary file added assets/img/sd-homepage-select.25d5f489.png
Binary file added assets/img/sd-homepage.ffe49ddc.png
Binary file added assets/img/sd-install-plan.e15369ae.png
Binary file added assets/img/sd-local-hub1.7460b65d.png
Binary file added assets/img/sd-local-hub1.96673050.png
Binary file added assets/img/sd-local-hub2.700fa312.png
Binary file added assets/img/sd-manage-usersauth.2b62383f.png
Binary file added assets/img/sd-manage-usersnoauth.f3f3f9a2.png
Binary file added assets/img/sd-seedcard.5cb847f6.png
Binary file added assets/img/sd-seedcardNG.9c86213f.png
Binary file added assets/img/sd-signup.e3bc2ae9.png
Binary file added assets/img/sd-transaction-table.1c385e76.png
1 change: 1 addition & 0 deletions assets/img/search.83621669.svg
Loading

0 comments on commit 2277b1e

Please sign in to comment.