Skip to content

lade-io/lade

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lade

Lade logo

Build Status Release

Lade is a developer tool for deploying and managing your apps.

You can learn more about Lade at https://www.lade.io.

Installation

Lade is supported on MacOS, Linux, and Windows as a standalone binary. You can download the latest binary from the releases page on GitHub.

MacOS

You can install with Homebrew:

brew install lade-io/tap/lade

Linux

You can download the latest tarball, extract it, and move it to your $PATH:

curl -L https://github.com/lade-io/lade/releases/latest/download/lade-linux-amd64.tar.gz | tar xz
sudo mv lade /usr/local/bin

Build From Source

You can build from source with Go:

go get github.com/lade-io/lade

Getting Started

Create an app:

$ lade apps create myapp

Create an addon:

$ lade addons create postgres --name mydb

Attach an addon to an app:

$ lade addons attach mydb --app myapp

Deploy an app:

$ lade deploy --app myapp

Command Help

Name:
  lade - Manage your Lade resources

Usage:
  lade [command]

Commands:
  addons      Manage addons
  apps        Manage apps
  deploy      Deploy an app
  disks       Manage disks
  domains     Manage domains
  env         Manage app environment
  help        Help about any command
  login       Login to your Lade account
  logout      Logout of your Lade account
  logs        Show logs from an app
  plans       List available plans
  ps          Display running tasks
  regions     List available regions
  run         Run a command on an app
  scale       Scale an app

Options:
  -h, --help      Print help message
  -v, --version   Print version and exit

Use "lade [command] --help" for more information about a command.