Skip to content

Latest commit

 

History

History
82 lines (50 loc) · 2.4 KB

File metadata and controls

82 lines (50 loc) · 2.4 KB
title genesis elements install

Overview

genesis elements install installs an element to a Exordos Core platform realm with necessary dependencies.

genesis elements install [OPTIONS] PATH_OR_NAME

Key options:

Option Description
-r, --repository TEXT Repository endpoint where the element is stored [default: https://repository.genesis-core.tech/genesis-elements/]
PATH_OR_NAME Path to a local manifest file or the name of an element in the repository

You can install elements on a public Exordos Core installation. Or you can deploy a private Exordos Core installation on your own hardware. For development and testing, you can use local laptop installation.


Getting Started

Install from Repository

To install an element by name from the default repository:

genesis elements install my-element

The command fetches the element manifest from the repository, resolves dependencies, and provisions the element in the current realm.

Install from Local Manifest

To install from a local manifest file:

genesis elements install ./manifests/my-element.yaml

Install from Custom Repository

To install from a different repository endpoint:

genesis elements install -r https://my-repo.example.com/elements/ my-element

Configuration

Target Realm

The command deploys to the Exordos Core realm currently configured in your environment. Ensure you have:

  • Valid credentials for the target realm
  • Network connectivity to the realm's API endpoint
  • Sufficient permissions to install elements

Repository Selection

By default, elements are fetched from the public Exordos repository. For private or internal elements, specify a custom repository URL with the -r option.


Next Steps

After a successful installation:


Troubleshooting

If you encounter issues during deployment — such as element installation failures, dependency resolution errors, or realm connectivity problems — refer to the Troubleshooting Guide for detailed solutions and common fixes.