I'm attempting to create a node within the CRXDE lite interface (I understand that this could be done in other IDE's) But for some reason after creating everything I need, it is all deleted upon a reload.
Here is the path I took
In terminal went to ui.apps and used the command
mvn -PautoInstallPackage -Padobe-public clean install
(I've performed the above with and without step 5 with the same result)
Performing all these steps the nodes I created disappear. Here are some possible clues I noticed.
I've researched the steps involving node creation on this page https://helpx.adobe.com/experience-manager/6-3/sites/developing/using/developing-with-crxde-lite.html#CreatingaNode but it doesn't seem to say I need to do anything other than click Save All. Is there something I'm missing?
The document is using an IDE(Eclipse) to create the nodes or pages which automatically pushes the changes to your AEM environment(server has to be configured)
It seems you are making the changes in the AEM CRX/de console, Once you executed step 5, it will override all the manual changes made in the server (It will push the changes from your local directory).
You can use this below tutorials to set up your IDE as used in the documentation
About your concern on not using IDE, if you would like to make the changes directly in CRX/DE, there are a couple of options to get it work.
Step by Step Procedure to Create a package (Attached screenshot as references for the steps)
- Navigate to Package Manager http://localhost:4502/crx/packmgr/index.jsp
- Click on Create Package (https://www.screencast.com/t/yW9BYcCyT)
- Enter Package name and group (Can be anything) and click OK (https://www.screencast.com/t/HmRkm7qY)
- Edit the package (https://www.screencast.com/t/i00J559Hf1tc)
- Navigate to filters Tab and Click on Add Filter (https://www.screencast.com/t/0MugoSEdHT)
- Enter the path to export, in your case it will be /apps/wknd/components/structure
- Click Done and Click on Save
- Click on Build and then download the package. (https://www.screencast.com/t/no0oEv7ShMi)
- Extract the zip file and copy the /apps/wknd/components/structure folder to your local code repository and do a build