Part I - Installing and setting up the CLI and Magnolia
In the first part of this tutorial, you install the CLI and use it to set up Magnolia.
You also create a prototype variant to later create a light module.
Installing Magnolia through npm CLI
This page explains how you can use npm CLI to install the Community Edition of Magnolia.
Prerequisites
Get Java
Magnolia needs at least a Java Runtime Environment (JRE) to run.
Check if there’s a version of Java already installed on your computer by opening the terminal or command prompt and typing java -version.
If the system reports a version number, Java is installed on your computer.
The steps below leverage version 4 of Magnolia CLI.
Run the following command in a shell to install
Magnolia CLI:
You must use CLI version 4.0.12 or later to install Magnolia 6.3.
Mac or Linux
Windows
sudo npm install @magnolia/cli -gCopy
npm install @magnolia/cli -g (1)Copy
1
Depending on your permissions and the location where you have installed
Node.js, you may have to execute the command above with root
permissions. Without installation permissions you will notice messages
such as npm ERR! in the shell.
If the installation is successful, you see the following or a similar
output in the shell:
Once you have installed Magnolia CLI, test the installation by running
the following command in the shell:
mgnl helpCopy
Usage: mgnl <command> [options]
A tool to setup and facilitate light development with Magnolia CMS
Options:
-v, --version output the version number
-h, --help output usage information
Commands:
jumpstart download and setup a Magnolia CMS instance for development.
start start up a Magnolia CMS instance. To stop it, enter CTRL-C
add-availability add component availability.
build scan a node_modules folder for npm packages with the keyword "magnolia-light-module" (in package.json) and extract them to a directory of choice.
create-app create an app.
create-block create a block.
create-component create a component and optionally add availability for it.
create-content-type create a content type.
create-light-module create a light module.
create-page create a page template.
create-virtual-uri create a virtual uri mapping.
customize-local-config extract "mgnl-cli-prototypes" folder and "mgnl-cli.json" file to customize CLI configuration.
install install a light module from npm to the local Magnolia instance.
search search for a light module on npm.
tab-completion install tab autocomplete feature for Bash, zsh or PowerShell
version display mgnl and node.js versions
help [cmd] display help for [cmd]
mgnl: 3.1.0 node: v8.10.0 os: linux
Copy
Downloading Magnolia
Let’s assume that the directory where you intend to download and install
Magnolia is called magnolia.
Change to this directory and open a shell.
Enter the following command, where with <version> you may specify
the Magnolia release you wish to download.
(If you don’t specify the version and run the command without the -m
switch, CLI will download the latest release of the most recent Magnolia branch.
mgnl jumpstart -m <version>Copy
The jumpstart command automatically creates a light modules directory for you in the current folder.
If you already have a different directory that you want to use for light modules, use the -p option with the command to specify the path to your existing light modules folder.
For example:
Similarly, to install a specific Magnolia version, use the -m flag, for example:
mgnl jumpstart -m 6.2.43Copy
To see a list of options available for any Magnolia CLI command, use the command together with the -h flag, for example:
mgnl jumpstart -hCopy
When prompted to choose a Magnolia bundle, enter 3 for the
magnolia-community-demo-webapp.
The jumpstart command:
Downloads the Magnolia bundle specified into the magnolia directory.
Creates a light-modules folder in the directory.
Changes the default value of the magnolia.resources.dir
configuration property from ${magnolia.home}/modules to
/magnolia/light-modules for both the Author and the Public instances
of Magnolia.
Once the setup operation is complete, you should see a message similar
to this one:
info Magnolia has been successfully setup for light development!
info You can now open a new terminal tab or window and start it up with the CLI command'mgnl start'
info Magnolia will be ready after a few seconds at localhost:8080/magnoliaAuthor. Username and password is superuserCopy
When you run create commands from the CLI, the new files are created based on prototype files.
So, for example, if you want to create a new page template then the basis for the template is specified by the prototype.
Essentially, the prototype is the copy-base for new templates.
Global vs local
Prototypes can be global or local.
Global: The global configuration is created during the installation of the Magnolia CLI package.
It will be used if no local configuration is found in the current directory or in its parent folders.
Local: The local configuration is created with the customize-local-config command.
This creates files in the directory where you execute the command. After creation, you can edit the config to suit your needs.
Different prototype variants are available depending on what you are creating.
When executing the create-page and create-component commands you can choose one of the prototype variants provided out-of-the-box.
If you don’t specify a prototype using the -P option, then the _default is used.
Instead of using one of the prototypes provided, we will create our own variants.
The easiest way of doing this is to copy and paste one of the existing prototype variants.
Create the local prototype configuration files
Create the local prototype configuration files by running the following CLI command in a shell:
mgnl customize-local-configCopy
This command extracts the following items to your current folder:
mgnl‑cli‑prototypes/
A folder which contains the prototypes for template and dialog definitions and the README file.
mgnl‑cli.json
The configuration file defining the folders of the light module skeleton and some other things.
The prototype files are located in the mgnl-cli-prototypes folder you just extracted to your dev directory.
Now you create prototype variants for the create-page and create-component commands based on the _default prototype you just extracted.
To create a variant, copy and paste the existing default prototype:
For pages, in dev/mgnl-cli-prototypes/page, copy the _default folder and paste it at the same level.
Rename your copy to my-page-prototype.
For components, in dev/mgnl-cli-prototypes/component, copy the _default folder and paste it at the same level.
Rename your copy to my-component-prototype.
In the mgnl-cli-prototypes/page/my-page-prototype/dialogs/pages folder, open name.yaml and replace the definition with the following reduced version that corresponds to a simple title field being required when creating a page:
You add a link to the CSS that uses variables (__lightDevModuleFolder__ and __name__.css) to generate part of the path to the light module folder and the name of the CSS file.
Edit the my-component-prototype variant
Next, in the mgnl-cli-prototypes/component/my-component-prototype/dialogs/components folder, open __name__.yaml and replace the definition with the following reduced version that corresponds to a component with a title field and a description:
In the mgnl-cli-prototypes/component/my-component-prototype/templates/components folder, open __name__.ftl and replace the script with the following reduced version:
The command installs and starts Magnolia. This is complete when you see
a message like Server startup in 112737 ms. You can then access the UI
of the Author instance.