upload_project
Transfer files or directories to the Yourware platform for deployment. Specify an absolute file path or consolidate multiple files into a directory for upload. Simplifies project showcasing.
Instructions
Upload a file or directory to yourware, might be a dist/out directory or a single html file. Use absolute path if possible. For multiple files, you should move them to a directory first, then use this tool to upload the directory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cwd | No | ||
file_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"cwd": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Cwd"
},
"file_path": {
"title": "File Path",
"type": "string"
}
},
"required": [
"file_path"
],
"title": "upload_projectArguments",
"type": "object"
}