
* Add new Apps List * Update apps routing * Add marketplace apps list * Update apps urls * Update app list style * Add installed apps section * Update apps sections and connect actions with mutations * Add latest missing buttons and labels to installed apps list * Update installed apps list * Update installed apps list * Add tests and marketplace error handling * Update environment configuration * Update GitHub actions env configuration * Refactor AppListCard component * Test InstallWithManifestFormButton * Test AppListCard * Extract InstalledAppListRow with tests * Update GitHub actions env configuration * Tests of apps dialogs * Update GitHub actions env configuration * Update messages * Update GitHub actions env configuration * Quote untrusted GitHub actions variables * Change useFetch to useMarketplaceApps and add tests * Fix strict null check errors * Refactor apps details components * Add strict null checks for /new-apps/ components
30 lines
926 B
HTML
30 lines
926 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0, user-scalable=no"
|
|
/>
|
|
<meta name="robots" content="noindex" />
|
|
<title>Saleor e-commerce</title>
|
|
<script>
|
|
window.__SALEOR_CONFIG__ = {
|
|
API_URL: "<%= API_URL %>",
|
|
APP_MOUNT_URI: "<%= APP_MOUNT_URI %>",
|
|
MARKETPLACE_URL: "<%= MARKETPLACE_URL %>",
|
|
SALEOR_APPS_PAGE_PATH: "<%= SALEOR_APPS_PAGE_PATH %>",
|
|
SALEOR_APPS_JSON_PATH: "<%= SALEOR_APPS_JSON_PATH %>",
|
|
APP_TEMPLATE_GALLERY_PATH: "<%= APP_TEMPLATE_GALLERY_PATH %>",
|
|
APPS_MARKETPLACE_API_URI: "<%= APPS_MARKETPLACE_API_URI %>",
|
|
APPS_TUNNEL_URL_KEYWORDS: "<%= APPS_TUNNEL_URL_KEYWORDS %>",
|
|
};
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="dashboard-app"></div>
|
|
<div id="portal"></div>
|
|
<div id="modal-root"></div>
|
|
</body>
|
|
</html>
|