Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Note

If you for some reason do not have the Stories App, add this to your webapp pom:

Code Block
<dependency>
  <groupId>info.magnolia.editor</groupId>
  <artifactId>stories-app</artifactId>
  <version>1.1.5</version>
</dependency
Expand
titleCreate the module structure we will need:
Code Block
languagebash
cd light_modules
mkdir -p block-examples/blocks
mkdir -p block-examples/templates/blocks
mkdir block-examples/i18n
mkdir -p block-examples/decorations/stories-app/apps/
mkdir -p block-examples/templates/pages

Alternatively, use mgnl create-light-module and add the structure you need.

...