Skip to content

Create an environment

Configure

First, scaffold an environment configuration file by running the following command:

xctl scaffold environment > environment.yaml

Configure the environment as required.

Note

A full list of available configuration parameters can be found here

Authenticate

To authenticate with the relevant services for your environment, run the following command:

xctl login --context environment.yaml

Create

To create an environment based on the configuration file, run the following command:

xctl apply --file environment.yaml

After a few minutes, you'll have a production grade environment ready to be used.

Back to top