Loading
This walkthrough installs the CLI, authenticates your account, and provisions a real environment from a manifest.
Install the Nexora CLI and confirm it's on your path.
curl -fsSL https://cli.nexorasystems.com/install | sh
nexora --versionLog in with your Nexora account. This opens a browser window to complete SSO if your organization requires it.
nexora loginCreate a manifest describing the environment you want to provision.
# environment.yaml
name: staging
provider: aws
region: us-east-1
compute:
service: web
instances: 1
cpu: 1
memory: 2GiNexora computes a diff against live infrastructure and checks it against policy before anything changes.
nexora plan environment.yamlProvision the environment. Nexora streams progress until every resource is healthy.
nexora apply environment.yaml
✓ compute.web provisioned (1/1 instances healthy)
✓ environment "staging" is liveExplore the API reference to integrate provisioning into your own tooling, or review how Nexora secures the environments you provision.