get_base_deployment_guide
Generate step-by-step deployment guides for Base mini apps on platforms like Vercel, Netlify, or custom setups, including domain configuration instructions.
Instructions
Get step-by-step deployment guide for Base mini apps.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
has_domain | No | Whether you have a custom domain | |
platform | Yes | Deployment platform |
Input Schema (JSON Schema)
{
"properties": {
"has_domain": {
"description": "Whether you have a custom domain",
"type": "boolean"
},
"platform": {
"description": "Deployment platform",
"enum": [
"vercel",
"netlify",
"custom"
],
"type": "string"
}
},
"required": [
"platform"
],
"type": "object"
}