git clone https://github.com/coremedia-contributions/coremedia-blueprints-workspace blueprint
What you'll learn
- Setting up your development system
- Getting the Blueprint workspace and licences
- Building the Blueprint workspace, Studio Client and Frontend
Prerequisites
- Development experience
Time matters
Should I read this?
- Building the Workspace
- What do you get?
- Step 1: Getting a Login for CoreMedia
- Step 2: Getting License Files for the CoreMedia System
- Step 3: Checking the Hardware Requirements
- Step 4: Checking and Installing all Required Third-Party Software
- Step 5: Cloning the Workspace
- Step 6: Getting the blob Demo Content
- Step 7: Configuring the Repository Settings and Check Maven Configuration
- Step 8: Building the Workspace with Maven
- Step 9: Building the Studio Client with pnpm
- Step 10: Building the Frontend with pnpm
With CoreMedia Content Cloud you do not get a program to install and run, but a workspace to develop within, to build with Maven and to deploy artifacts from.
-
The quick start describes the Docker test system setup. It uses the Docker images to start the systems components. See Docker Compose Setup for details.
The quick start describes only one path, no options or advanced configurations are described. The "Further Reading" section of each step contains links to additional content, but you do not need to read these chapters for the purpose of the quick start.
You need Internet access and a resolvable host name to get everything up and running. |
Building the Workspace
What do you get?
When you are finished with all steps, you will have built the CoreMedia Blueprint Workspace, the Studio Client, the Frontend and the Docker images for all CoreMedia Content Cloud applications.
Step 1: Getting a Login for CoreMedia
Goal
You have a login to the CoreMedia software download page, the contributions GitHub repository, the documentation and the CoreMedia artifact repository.
Steps
-
Ask your project manager for your company’s account details or contact the CoreMedia support. Keep in mind, that you have to ask explicitly for the access rights to the CoreMedia GitHub contributions repository. See CoreMedia’s website for the contact information of the support at http://www.coremedia.com/support.
Check
Got to https://documentation.coremedia.com/ and https://github.com/coremedia-contributions/coremedia-blueprints-workspace and enter your credentials. You should be able to use the complete online documentation and see the contributions repository.
Step 2: Getting License Files for the CoreMedia System
Goal
You have licenses for the CoreMedia system.
Steps
Ask your project manager, your key account manager or your partner manager for the CoreMedia licenses.
Check
You have a Zip file that contains three zipped license files. In Docker Compose Setup you will learn where to put the license files.
Further Reading
-
See CoreMedia Licenses for details about the license file format.
Step 3: Checking the Hardware Requirements
Goal
You are sure, that your computer meets the hardware requirements as described in Prerequisites.
Step 4: Checking and Installing all Required Third-Party Software
Goal
All required third-party software (such as Java, Git, Maven,…) is installed on your computer and has the right version.
Steps
-
Open the Supported Environments document and check that you have installed the right version of Java and that you have the right OS. The
JAVA_HOME
variable must be set. -
Check that a supported Maven version is installed (see Supported Environments).
-
Check that a supported container environment is installed on your computer (see Supported Environments). See Docker Installation for installation instructions.
Further reading
-
Prerequisites describes the required software in more detail.
Step 5: Cloning the Workspace
Goal
You have the Blueprint workspace on your hard disk.
Steps
-
Make sure that you have access to the Blueprint repository. If you encounter a 404 error, then you are probably not logged in at GitHub or you do not have sufficient permissions yet.
-
When you use a Windows system, make sure that the Git configuration parameter
core.autocrlf
is set to "input". Otherwise, some init files will not run properly in your test machine. Because on checkout, Git would change the line endings to Windows style. -
On your local machine, clone the repository into a directory
blueprint
using Git:Path length limitation in Windows
The WORKSPACE contains long paths and deeply nested folders. If you install the WORKSPACE in a Windows environment, keep the installation path shorter than 25 characters. Otherwise, unzipping the workspace might fail or might lead to missing files due to the 260 bytes path limit of Windows.
-
In the cloned repository, get a list of all tags:
git tag
-
Create your working branch from the tag you want to use as your starting point:
git checkout -b <yourBranchName> <tagName>
Check
The Git clone command has succeeded.
Further reading
-
Blueprint Workspace for Developers describes the structure of the workspace, the concepts behind the workspace and how you can work with the workspace.
-
Configuring the Workspace describes further configuration of the workspace which is required for development and deployment.
-
On https://releases.coremedia.com/cmcc-12 click the link to the latest download to find a description on how to download a specific release.
Step 6: Getting the blob Demo Content
The textual content and the themes are already part of the workspace you have cloned before. However, to keep the workspace small, the blob content is supplied in a separate file.
Goal
The workspace contains the blob files of the CoreMedia demo content (videos, images, …).
Steps
-
Open the releases site.
-
Click the "content-blobs archive" link on the site and download the file.
-
Extract the archive into the workspace you have cloned in step 5.
Step 7: Configuring the Repository Settings and Check Maven Configuration
Goal
Your Maven settings.xml
file contains the settings required to connect with the CoreMedia Nexus repository.
The PNPM client is logged in into https://npm.coremedia.io.
Steps
-
Follow the steps described in Prerequisites.
Check
When you build the workspace, all artifacts are found.
Step 8: Building the Workspace with Maven
Goal
The workspace has been build, so that most of the artifacts and Docker images are built. The build takes some time. On an Intel i7 processor with 16GB RAM around 20 minutes.
Steps
In the main directory of the workspace call:
mvn clean install -DskipTests -Pdefault-image
Check
The Maven build ends with message "Build successful".
Further reading
-
Removing Optional Components describes how you can remove parts of the workspace that you do not need.
-
In-Memory Replacement for MongoDB-Based Services describes how you can replace MongoDB for Studio services with an in-memory solution.
Step 9: Building the Studio Client with pnpm
Goal
The Studio Client has been built so that you can start the Docker container.
Steps
-
Switch into the Studio Client directory:
cd blueprint/apps/studio-client
-
Build the Studio Client:
pnpm install pnpm -r run build pnpm -r run package
-
Build the Docker image:
docker buildx build . --tag coremedia/studio-client:latest
For more detailed instructions and possible build options consult
apps/studio-client/README.adoc
.
Step 10: Building the Frontend with pnpm
Goal
The frontend has been built, so that you can use the themes and bricks.
Steps
-
Switch into the frontend directory:
cd blueprint/frontend
-
Build the frontend parts:
pnpm install pnpm run build pnpm run build-frontend-zip
For more detailed instructions and possible build options consult frontend/README.adoc
.
Congratulations, you have built the Blueprint workspace and the Docker images. Continue with Docker Compose Setup in order to configure and start the Docker deployment.