create_environment
Create a new environment within a Coolify project to organize deployments, applications, and services for different stages like development, staging, or production.
Instructions
Create a new environment within a project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Optional description of the environment | |
name | Yes | Name of the environment | |
project_uuid | Yes | UUID of the project where this environment will be created |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Optional description of the environment",
"examples": [
"Staging environment for testing"
],
"type": "string"
},
"name": {
"description": "Name of the environment",
"examples": [
"staging",
"production",
"development"
],
"type": "string"
},
"project_uuid": {
"description": "UUID of the project where this environment will be created",
"examples": [
"sg4gsws44wksg040o4ok80ww"
],
"pattern": "^[a-zA-Z0-9]+$",
"type": "string"
}
},
"required": [
"project_uuid",
"name"
],
"type": "object"
}