coolify_create_project
Create a new project in Coolify with a specified name and description to organize infrastructure components and deployments.
Instructions
Create a new project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | No | Project description | |
| name | Yes | Project name |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Project description",
"type": "string"
},
"name": {
"description": "Project name",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}