The Frontify AEM Connector allows to deliver meaningful experiences with digital assets originating from Frontify DAM in Adobe Experience Manager (AEM). The content author searches Frontify image assets directly from AEM pages. Integrated assets are delivered as part of AEM pages and are linked to the Frontify CDN.
The Frontify AEM Connector delivers the following parts:
- Cloud Configuration to configure Frontify endpoints in AEM
- Frontify Content Finder Tab
- Frontify API
- Example AEM component to be used directly or to be used as parent or as example for own custom components to use Frontify assets (i.e. a carousel)
For the Frontify AEM Connector to properly work, the following pre-requisites are required
- Adobe Experience Manager 6.5 with installed SP4 (aem-service-pkg-6.5.4.zip)
- AEM Connector to be installed on AEM
- Valid Frontify DAM account
The Frontify AEM Connector is tested in the following web browsers for content authoring in Adobe AEM:
- Google Chrome (Evergreen)
- Microsoft Edge (Evergreen)
- Mozilla Firefox (Evergreen)
The main parts of the project are:
- core: Java bundle containing all core functionality like OSGi services, listeners or schedulers, as well as component-related Java code such as servlets or request filters.
- ui.apps: contains the /apps (and /etc) parts of the project, ie JS&CSS clientlibs, components, templates, runmode specific configs as well as Hobbes-tests
- ui.content: contains sample content using the components from the ui.apps
- ui.frontend: an optional dedicated front-end build mechanism (Angular, React or general Webpack project)
To build all the modules run in the project root directory the following command with Maven 3:
mvn clean install
If you have a running AEM instance you can build and package the whole project and deploy into AEM with
mvn clean install -PautoInstallPackage
Or to deploy it to a publish instance, run
mvn clean install -PautoInstallPackagePublish
Or alternatively
mvn clean install -PautoInstallPackage -Daem.port=4503
Or to deploy only the bundle to the author, run
mvn clean install -PautoInstallBundle
The frontend module is made available using an AEM ClientLib. When executing the NPM build script, the app is built and the aem-clientlib-generator
package takes the resulting build output and transforms it into such a ClientLib.
A ClientLib will consist of the following files and directories:
css/
: CSS files which can be requested in the HTMLcss.txt
(tells AEM the order and names of files incss/
so they can be merged)js/
: JavaScript files which can be requested in the HTMLjs.txt
(tells AEM the order and names of files injs/
so they can be merged