Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/runware_serverless.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,13 @@ Deploy, monitor, and manage Runware serverless applications on the platform
### SEE ALSO

* [runware](runware.md) - CLI tool for the Runware API
* [runware serverless apps](runware_serverless_apps.md) - Manage deployed serverless applications
* [runware serverless deploy](runware_serverless_deploy.md) - Deploy a new serverless application
* [runware serverless dev](runware_serverless_dev.md) - Run a serverless application locally for development
* [runware serverless gpus](runware_serverless_gpus.md) - List available GPU types and pricing
* [runware serverless init](runware_serverless_init.md) - Initialize a new serverless project
* [runware serverless open](runware_serverless_open.md) - Open an application in the Runware dashboard
* [runware serverless registry](runware_serverless_registry.md) - Manage container registries for serverless deployments
* [runware serverless usage](runware_serverless_usage.md) - Show serverless usage and billing events
* [runware serverless use](runware_serverless_use.md) - Set the default serverless application

43 changes: 43 additions & 0 deletions docs/runware_serverless_apps.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
## runware serverless apps

Manage deployed serverless applications

### Synopsis

Manage deployed serverless applications on the Runware platform.

```
runware serverless apps [flags]
```

### Options

```
-h, --help help for apps
```

### Options inherited from parent commands

```
--debug Show full debug output
-F, --format string CLI output format: table, json, yaml (default "table")
--transport string Transport protocol: ws (WebSocket) or http (REST) (default "ws")
-v, --verbose Show request/response details
```

### SEE ALSO

* [runware serverless](runware_serverless.md) - Manage Runware serverless applications
* [runware serverless apps delete](runware_serverless_apps_delete.md) - Delete a serverless application
* [runware serverless apps endpoints](runware_serverless_apps_endpoints.md) - List endpoints for a serverless application
* [runware serverless apps list](runware_serverless_apps_list.md) - List serverless applications
* [runware serverless apps logs](runware_serverless_apps_logs.md) - Show logs for a serverless application
* [runware serverless apps resume](runware_serverless_apps_resume.md) - Resume a stopped serverless application
* [runware serverless apps scale](runware_serverless_apps_scale.md) - Scale a serverless application
* [runware serverless apps secret](runware_serverless_apps_secret.md) - Manage secrets for a serverless application
* [runware serverless apps show](runware_serverless_apps_show.md) - Show details for a serverless application
* [runware serverless apps stop](runware_serverless_apps_stop.md) - Stop a serverless application
* [runware serverless apps usage](runware_serverless_apps_usage.md) - Show usage for a serverless application
* [runware serverless apps versions](runware_serverless_apps_versions.md) - List versions of a serverless application
* [runware serverless apps workers](runware_serverless_apps_workers.md) - List workers for a serverless application

34 changes: 34 additions & 0 deletions docs/runware_serverless_apps_delete.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
## runware serverless apps delete

Delete a serverless application

```
runware serverless apps delete <deploymentId> [flags]
```

### Examples

```
# delete an application
runware serverless apps delete my-app
```

### Options

```
-h, --help help for delete
```

### Options inherited from parent commands

```
--debug Show full debug output
-F, --format string CLI output format: table, json, yaml (default "table")
--transport string Transport protocol: ws (WebSocket) or http (REST) (default "ws")
-v, --verbose Show request/response details
```

### SEE ALSO

* [runware serverless apps](runware_serverless_apps.md) - Manage deployed serverless applications

35 changes: 35 additions & 0 deletions docs/runware_serverless_apps_endpoints.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
## runware serverless apps endpoints

List endpoints for a serverless application

```
runware serverless apps endpoints <deploymentId> [flags]
```

### Examples

```
# list endpoints for an application
runware serverless apps endpoints my-app
```

### Options

```
-h, --help help for endpoints
--limit int Maximum number of endpoints to return (1-100)
```

### Options inherited from parent commands

```
--debug Show full debug output
-F, --format string CLI output format: table, json, yaml (default "table")
--transport string Transport protocol: ws (WebSocket) or http (REST) (default "ws")
-v, --verbose Show request/response details
```

### SEE ALSO

* [runware serverless apps](runware_serverless_apps.md) - Manage deployed serverless applications

39 changes: 39 additions & 0 deletions docs/runware_serverless_apps_list.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
## runware serverless apps list

List serverless applications

```
runware serverless apps list [flags]
```

### Examples

```
# list all serverless applications
runware serverless apps list

# filter by status
runware serverless apps list --status active
```

### Options

```
-h, --help help for list
--limit int Maximum number of applications to return (1-100)
--status string Filter by status (active, initializing, stopped, …)
```

### Options inherited from parent commands

```
--debug Show full debug output
-F, --format string CLI output format: table, json, yaml (default "table")
--transport string Transport protocol: ws (WebSocket) or http (REST) (default "ws")
-v, --verbose Show request/response details
```

### SEE ALSO

* [runware serverless apps](runware_serverless_apps.md) - Manage deployed serverless applications

34 changes: 34 additions & 0 deletions docs/runware_serverless_apps_logs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
## runware serverless apps logs

Show logs for a serverless application

```
runware serverless apps logs <deploymentId> [flags]
```

### Examples

```
# fetch or stream logs for an application
runware serverless apps logs my-app
```

### Options

```
-h, --help help for logs
```

### Options inherited from parent commands

```
--debug Show full debug output
-F, --format string CLI output format: table, json, yaml (default "table")
--transport string Transport protocol: ws (WebSocket) or http (REST) (default "ws")
-v, --verbose Show request/response details
```

### SEE ALSO

* [runware serverless apps](runware_serverless_apps.md) - Manage deployed serverless applications

34 changes: 34 additions & 0 deletions docs/runware_serverless_apps_resume.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
## runware serverless apps resume

Resume a stopped serverless application

```
runware serverless apps resume <deploymentId> [flags]
```

### Examples

```
# resume a stopped application
runware serverless apps resume my-app
```

### Options

```
-h, --help help for resume
```

### Options inherited from parent commands

```
--debug Show full debug output
-F, --format string CLI output format: table, json, yaml (default "table")
--transport string Transport protocol: ws (WebSocket) or http (REST) (default "ws")
-v, --verbose Show request/response details
```

### SEE ALSO

* [runware serverless apps](runware_serverless_apps.md) - Manage deployed serverless applications

34 changes: 34 additions & 0 deletions docs/runware_serverless_apps_scale.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
## runware serverless apps scale

Scale a serverless application

```
runware serverless apps scale <deploymentId> [flags]
```

### Examples

```
# update scaling configuration for an application
runware serverless apps scale my-app
```

### Options

```
-h, --help help for scale
```

### Options inherited from parent commands

```
--debug Show full debug output
-F, --format string CLI output format: table, json, yaml (default "table")
--transport string Transport protocol: ws (WebSocket) or http (REST) (default "ws")
-v, --verbose Show request/response details
```

### SEE ALSO

* [runware serverless apps](runware_serverless_apps.md) - Manage deployed serverless applications

30 changes: 30 additions & 0 deletions docs/runware_serverless_apps_secret.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
## runware serverless apps secret

Manage secrets for a serverless application

```
runware serverless apps secret [flags]
```

### Options

```
-h, --help help for secret
```

### Options inherited from parent commands

```
--debug Show full debug output
-F, --format string CLI output format: table, json, yaml (default "table")
--transport string Transport protocol: ws (WebSocket) or http (REST) (default "ws")
-v, --verbose Show request/response details
```

### SEE ALSO

* [runware serverless apps](runware_serverless_apps.md) - Manage deployed serverless applications
* [runware serverless apps secret list](runware_serverless_apps_secret_list.md) - List secrets for a serverless application
* [runware serverless apps secret remove](runware_serverless_apps_secret_remove.md) - Remove a secret from a serverless application
* [runware serverless apps secret set](runware_serverless_apps_secret_set.md) - Set a secret on a serverless application

34 changes: 34 additions & 0 deletions docs/runware_serverless_apps_secret_list.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
## runware serverless apps secret list

List secrets for a serverless application

```
runware serverless apps secret list <deploymentId> [flags]
```

### Examples

```
# list secrets attached to an application
runware serverless apps secret list my-app
```

### Options

```
-h, --help help for list
```

### Options inherited from parent commands

```
--debug Show full debug output
-F, --format string CLI output format: table, json, yaml (default "table")
--transport string Transport protocol: ws (WebSocket) or http (REST) (default "ws")
-v, --verbose Show request/response details
```

### SEE ALSO

* [runware serverless apps secret](runware_serverless_apps_secret.md) - Manage secrets for a serverless application

34 changes: 34 additions & 0 deletions docs/runware_serverless_apps_secret_remove.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
## runware serverless apps secret remove

Remove a secret from a serverless application

```
runware serverless apps secret remove <deploymentId> [flags]
```

### Examples

```
# detach a secret from an application
runware serverless apps secret remove my-app
```

### Options

```
-h, --help help for remove
```

### Options inherited from parent commands

```
--debug Show full debug output
-F, --format string CLI output format: table, json, yaml (default "table")
--transport string Transport protocol: ws (WebSocket) or http (REST) (default "ws")
-v, --verbose Show request/response details
```

### SEE ALSO

* [runware serverless apps secret](runware_serverless_apps_secret.md) - Manage secrets for a serverless application

Loading