Loading...
Last updated on
The gensx env create
command creates a new environment in your GenSX project. Environments allow you to manage different deployment configurations (like development, staging, and production) for your workflows.
gensx env create <name> [options]
Argument | Description |
---|---|
<name> | Name of the environment to create (e.g., “dev”, “staging”, “production”). |
Option | Description |
---|---|
-p, --project <name> | Project name to create the environment in. |
-h, --help | Display help for the command. |
# Create a development environment
gensx env create dev
# Create a production environment in a specific project
gensx env create production --project my-app
gensx login
)