| title | genesis elements install |
|---|
genesis elements install installs an element to a Exordos Core platform realm with necessary dependencies.
genesis elements install [OPTIONS] PATH_OR_NAMEKey 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.
To install an element by name from the default repository:
genesis elements install my-elementThe command fetches the element manifest from the repository, resolves dependencies, and provisions the element in the current realm.
To install from a local manifest file:
genesis elements install ./manifests/my-element.yamlTo install from a different repository endpoint:
genesis elements install -r https://my-repo.example.com/elements/ my-elementThe 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
By default, elements are fetched from the public Exordos repository. For private or internal elements, specify a custom repository URL with the -r option.
After a successful installation:
- Verify the element status in the Exordos Core CLI
- Customize the manifest to tailor the element configuration to your needs
- Update the element when a new version is available
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.