Abstract
This tutorial walks through setting up a local development environment for Adobe Experience Manager (AEM) using the AEM as a Cloud Service SDK. Adobe official document Adobe Experience Manager as a Cloud Service Tutorials explain steps in more details.
https://docs.adobe.com/content/help/en/experience-manager-learn/cloud-service/local-development-environment-set-up/overview.html
But Objective of this document to share steps to setup AEM git project, AEM Author, AEM Publish and AEM Dispatcher and covers the
1. Download latest AEM SDK from Software Distribution
2. Create Maven Project
3. Download JAVA 11
4. File System Organization
5. Install AEM Jar with JDK 11.
6. Run AEM with JDK 11.
7. Setup Replication Agent
8.Dispatcher
9. Windows Hyper-V Feature
Download latest AEM SDK from Software Distribution
https://experience.adobe.com/#/downloads/content/software-distribution/en/aemcloud.html
Create a maven project using the latest archetype
mvn -B archetype:generate -D archetypeGroupId=com.adobe.granite.archetypes -D archetypeArtifactId=aem-project-archetype -D archetypeVersion=23 -D aemVersion=cloud -D appTitle="AEM Lab" -D appId="aem-lab" -D groupId="com.community.aemlab" -D frontendModule=none -D includeExamples=n
Example - https://github.com/arunpatidar02/aemaacs-aemlab
Read Full Blog
Q&A
Please use this thread to ask the related questions.
Kautuk Sahni