Skip to content

CLI Plugin to manage downloading of slugs

License

Notifications You must be signed in to change notification settings

heroku/heroku-slugs

Repository files navigation

Heroku Slugs CLI Plugin

This plugin adds commands to the Heroku CLI for downloading slugs

Commands

$ heroku slugs -a appname
Slugs in appname
v24: 00000000-bbbb-cccc-dddd-eeeeeeeeeeee
v23: 11111111-bbbb-cccc-dddd-eeeeeeeeeeee
v22: 22222222-bbbb-cccc-dddd-eeeeeeeeeeee
v21: 33333333-bbbb-cccc-dddd-eeeeeeeeeeee

$ heroku slugs:download 00000000-bbbb-cccc-dddd-eeeeeeeeeeee -a appname

This will download the Slug directly from our filestore on S3

Using a proxy

$ export HEROKU_HTTP_PROXY_HOST=<your-proxy-host>
$ export HEROKU_HTTP_PROXY_PORT=<your-proxy-port>
$ heroku slugs:download 00000000-bbbb-cccc-dddd-eeeeeeeeeeee -a appname

Usage

$ npm install -g @heroku-cli/heroku-slugs
$ heroku COMMAND
running command...
$ heroku (--version)
@heroku-cli/heroku-slugs/1.1.0 darwin-x64 node-v20.18.3
$ heroku --help [COMMAND]
USAGE
  $ heroku COMMAND
...

Commands

heroku slugs

list recent slugs on application

USAGE
  $ heroku slugs -a <value> [-r <value>]

FLAGS
  -a, --app=<value>     (required) app to run command against
  -r, --remote=<value>  git remote of app to use

DESCRIPTION
  list recent slugs on application

EXAMPLES
  $ heroku slugs --app myapp

See code: src/commands/slugs/index.ts

heroku slugs:download [SLUG]

downloads a slug to <APP_NAME>/slug.tar.gz and then extracts it

USAGE
  $ heroku slugs:download [SLUG] -a <value> [-r <value>]

ARGUMENTS
  SLUG  slug ID or name of slug

FLAGS
  -a, --app=<value>     (required) app to run command against
  -r, --remote=<value>  git remote of app to use

DESCRIPTION
  downloads a slug to <APP_NAME>/slug.tar.gz and then extracts it

EXAMPLES
  $ heroku slugs:download --app myapp v2

See code: src/commands/slugs/download.ts