Skip to Content
Upblit
AboutOpen SourceCommunityDeveloperContactPricing
Star on GitHub—Sign in
CTRL K
  • Introduction
    • AI Gateway Overview
    • Documents
    • Tenants
    • API Reference Overview
    • AI Gateway API
    • API Keys API
    • Applications API
    • Authentication
    • Ingest API (SDK)
    • Organizations API
    • Projects API
    • Telemetry API
    • Users API
    • Architecture Overview
    • Database Architecture
    • Multi-Tenancy
    • Security Model
    • Service Boundaries
    • Telemetry Pipeline
  • DeployX CLI
    • Contributing
    • Architecture Rules
    • Coding Guidelines
    • SDK Development
    • Dashboard Overview
    • AI Gateway
    • API Keys
    • Applications
    • Observability
    • Organizations
    • Profile
    • Projects
    • Quickstart
    • Authentication
    • Your First Project
    • Installation
    • Observability Overview
    • Structured Logs
    • Telemetry Flow
    • Distributed Traces
    • SDK Overview
    • Express SDK
    • Go SDK
    • Java SDK (Coming Soon)
    • Python SDK
    • React SDK (Coming Soon)
  • Introduction
    • AI Gateway Overview
    • Documents
    • Tenants
    • API Reference Overview
    • AI Gateway API
    • API Keys API
    • Applications API
    • Authentication
    • Ingest API (SDK)
    • Organizations API
    • Projects API
    • Telemetry API
    • Users API
    • Architecture Overview
    • Database Architecture
    • Multi-Tenancy
    • Security Model
    • Service Boundaries
    • Telemetry Pipeline
  • DeployX CLI
    • Contributing
    • Architecture Rules
    • Coding Guidelines
    • SDK Development
    • Dashboard Overview
    • AI Gateway
    • API Keys
    • Applications
    • Observability
    • Organizations
    • Profile
    • Projects
    • Quickstart
    • Authentication
    • Your First Project
    • Installation
    • Observability Overview
    • Structured Logs
    • Telemetry Flow
    • Distributed Traces
    • SDK Overview
    • Express SDK
    • Go SDK
    • Java SDK (Coming Soon)
    • Python SDK
    • React SDK (Coming Soon)

On This Page

  • Installation
  • Build from Source
  • Commands
  • deployx init <git-repo-url>
  • deployx push
  • deployx --help
  • Example Workflow
  • Planned Commands
  • Notes
DeployX CLI

DeployX CLI

DeployX is the Upblit command-line tool for Git-based deployments. It wraps common Git workflows into simple, memorable commands.

Installation

Build from Source

cd Upblit/UpblitCLI go build -o deployx .

Move the binary to your PATH:

# macOS / Linux mv deployx /usr/local/bin/deployx # Windows # Move deployx.exe to a directory in your PATH

Commands

deployx init <git-repo-url>

Initializes a Git repository and pushes to a remote for the first time.

deployx init https://github.com/your-org/your-repo.git

This runs:

  1. git init
  2. git remote add origin <url>
  3. git add .
  4. git commit -m "DeployX live deploy"
  5. git branch -M main
  6. git push -u origin main

deployx push

Commits all changes and force-pushes to the current remote.

deployx push

This runs:

  1. git add .
  2. git commit -m "DeployX live deploy"
  3. git push --force

deployx --help

Displays usage information.

deployx --help

Example Workflow

# First deployment cd my-project deployx init https://github.com/acme/my-project.git # Subsequent deployments deployx push

Planned Commands

The following commands are referenced in the Upblit dashboard but not yet implemented:

CommandDescription
deployx liveLive deployment status
deployx deploy --env prodDeploy to a specific environment
deployx logs --project <name>Stream logs for a project
deployx rollback --to <version>Roll back to a previous version

Notes

  • DeployX currently wraps Git commands only — it does not directly call the Upblit API
  • The --force flag on deployx push overwrites remote history — use with caution on shared branches
  • All output goes to stdout; errors go to stderr
Last updated on May 27, 2026
Telemetry PipelineContributing
Upblit

A student-built observability workbench for logs, traces, metrics, API keys, and AI-assisted incident notes.

OAuthAPI scopesTrace contextRetention notes

Product

  • Architecture
  • Dashboard preview
  • AI docs
  • Security
  • Pricing

Developers

  • Developer docs
  • API reference
  • Changelog
  • GitHub
  • Status

Company

  • Support
  • Contact
  • Docs
  • Dashboard
  • Sign in

Legal

  • Privacy Policy
  • Terms
  • Cookie Policy
  • Acceptable Use
  • Data Retention
  • Data Processing

Copyright 2026 Upblit. All rights reserved.

Built for telemetry review, API operations, and incident response.