deploy_website
Deploy static website files to a 1Panel server by specifying the domain and build directory, streamlining website hosting and file uploads through natural language commands.
Instructions
Deploy website to 1Panel server
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| buildDir | Yes | Build directory name (e.g. /Users/username/project/dist, /Users/username/project/build) | |
| domain | Yes | Website domain | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "buildDir": {
      "description": "Build directory name (e.g. /Users/username/project/dist, /Users/username/project/build)",
      "type": "string"
    },
    "domain": {
      "description": "Website domain",
      "type": "string"
    }
  },
  "required": [
    "domain",
    "buildDir"
  ],
  "type": "object"
}