deploy_folder_or_zip
Deploy a built frontend directory or zip file to EdgeOne Pages, generating a public URL and project metadata for easy access and sharing.
Instructions
Deploy a built frontend directory (or zip file) to EdgeOne Pages. Returns: the deployment URL and project metadata.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
builtFolderPath | Yes | Provide the absolute path to the built frontend folder(or zip file) you wish to deploy. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"builtFolderPath": {
"description": "Provide the absolute path to the built frontend folder(or zip file) you wish to deploy.",
"type": "string"
}
},
"required": [
"builtFolderPath"
],
"type": "object"
}