create_project
Create a new project to organize applications and services within Coolify deployments, enabling DevOps teams to structure their infrastructure and manage resources effectively.
Instructions
Create a new project to organize applications and services.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Optional description of the project | |
name | Yes | Name of the project |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Optional description of the project",
"examples": [
"Production environment for my application"
],
"type": "string"
},
"name": {
"description": "Name of the project",
"examples": [
"My App"
],
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}