Enclavely Docs
Platform

Projects & Environments

Organize services with project and environment boundaries.

Use projects and environments to keep deploy workflows predictable.

Projects

A project is one service. Examples:

  • kms-signer
  • token-decryptor

Create and list projects:

enclavely project create kms-signer
enclavely project list

Environments

Environments isolate release history and routing within a project.

Example setup:

  • dev
  • qa
  • prod-eu

Create and list environments:

enclavely env create kms-signer dev
enclavely env create kms-signer qa
enclavely env create kms-signer prod-eu

enclavely env list kms-signer
  1. Deploy to dev
  2. Validate behavior
  3. Re-deploy the same digest set to qa
  4. Deploy to your production environment only after verification

Environment names are freeform, but consistent names reduce CI complexity.

On this page