deployments

package
v0.102.2-nightly Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 11, 2026 License: AGPL-3.0 Imports: 17 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var DeleteCmd = &cobra.Command{
	Use:   "delete <name>",
	Short: "Delete a deployment",
	Args:  cobra.ExactArgs(1),
	RunE:  deleteDeployment,
}

DeleteCmd deletes a deployment

View Source
var DeployCmd = &cobra.Command{
	Use:   "deploy",
	Short: "Deploy applications",
	Long:  "Deploy static sites, Next.js apps, Go backends, and Node.js backends",
}

DeployCmd is the root deploy command

View Source
var DeployGoCmd = &cobra.Command{
	Use:   "go <source_path>",
	Short: "Deploy a Go backend",
	Args:  cobra.ExactArgs(1),
	RunE:  deployGo,
}

DeployGoCmd deploys a Go backend

View Source
var DeployNextJSCmd = &cobra.Command{
	Use:   "nextjs <source_path>",
	Short: "Deploy a Next.js application",
	Args:  cobra.ExactArgs(1),
	RunE:  deployNextJS,
}

DeployNextJSCmd deploys a Next.js application

View Source
var DeployNodeJSCmd = &cobra.Command{
	Use:   "nodejs <source_path>",
	Short: "Deploy a Node.js backend",
	Args:  cobra.ExactArgs(1),
	RunE:  deployNodeJS,
}

DeployNodeJSCmd deploys a Node.js backend

View Source
var DeployStaticCmd = &cobra.Command{
	Use:   "static <source_path>",
	Short: "Deploy a static site (React, Vue, etc.)",
	Args:  cobra.ExactArgs(1),
	RunE:  deployStatic,
}

DeployStaticCmd deploys a static site

View Source
var GetCmd = &cobra.Command{
	Use:   "get <name>",
	Short: "Get deployment details",
	Args:  cobra.ExactArgs(1),
	RunE:  getDeployment,
}

GetCmd gets a specific deployment

View Source
var ListCmd = &cobra.Command{
	Use:   "list",
	Short: "List all deployments",
	RunE:  listDeployments,
}

ListCmd lists all deployments

View Source
var LogsCmd = &cobra.Command{
	Use:   "logs <name>",
	Short: "Stream deployment logs",
	Args:  cobra.ExactArgs(1),
	RunE:  streamLogs,
}

LogsCmd streams deployment logs

View Source
var RollbackCmd = &cobra.Command{
	Use:   "rollback <name>",
	Short: "Rollback a deployment to a previous version",
	Args:  cobra.ExactArgs(1),
	RunE:  rollbackDeployment,
}

RollbackCmd rolls back a deployment

View Source
var StatsCmd = &cobra.Command{
	Use:   "stats <name>",
	Short: "Show resource usage for a deployment",
	Args:  cobra.ExactArgs(1),
	RunE:  statsDeployment,
}

StatsCmd shows resource usage for a deployment

Functions

This section is empty.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL