Table of Contents

Components cluster

We provide a cluster containing demonstrations of the components available in the framework.

You can explore the source code of the cluster in Azure DevOps.

There are two ways to access it.

Use the deployed version

We deploy the cluster to test that the components work well in production, because the behavior can be slightly different depending on whether we are in development or in production.

Authentication is enabled on this cluster. If you want to access it, contact a team member to give you access.

The URL address is: https://components.staging.neos.groupeisagri.com/

Run it locally

You can run it locally in development mode.

  1. Clone the Neos repository.
git clone --depth 1 --branch release/[VERSION] https://[email protected]/POLE-ERP-GROUPEISA/FMK/_git/Neos

Replace the [VERSION] tag by the version of the framework you want to use.

  1. Copy and paste the /components outside of the Neos repository.
  2. [OPTIONAL] In this components.connectionstring.yml file, you can change the persistence type and add a connection string.
  3. Specify the corresponding Neos version to be used by creating a new file dotnet-tools.json. It is recommended to use the latest patch corresponding to your [VERSION] : See change log Replace [VERSION] and [LAST PATCH] in this example of dotnet-tools.json file :
{
  "version": 1,
  "isRoot": true,
  "tools": {
    "GroupeIsa.Neos.Console": {
      "version": "[VERSION].[LAST PATCH]",
      "commands": [
        "neos"
      ]
    }
  }
}
  1. Generate the cluster (neos generate).
  2. Run the cluster (neos run).