list_environments
Retrieve all environments within a Coolify project to view deployment stages like production, staging, and development. Requires the project UUID from list_projects.
Instructions
List all environments in a project. Environments separate different deployment stages like production, staging, development.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_uuid | Yes | UUID of the project to list environments for. Get this from list_projects. |
Input Schema (JSON Schema)
{
"properties": {
"project_uuid": {
"description": "UUID of the project to list environments for. Get this from list_projects.",
"examples": [
"sg4gsws44wksg040o4ok80ww"
],
"pattern": "^[a-zA-Z0-9]+$",
"type": "string"
}
},
"required": [
"project_uuid"
],
"type": "object"
}