Skip to content

Latest commit

 

History

History
71 lines (53 loc) · 2.51 KB

README.md

File metadata and controls

71 lines (53 loc) · 2.51 KB

@heroku-cli/plugin-ps

ps core plugin for Heroku CLI

Version CircleCI Appveyor CI Codecov Downloads/week License

Commands

heroku ps:autoscale:disable

disable web dyno autoscaling

USAGE
  $ heroku ps:autoscale:disable

OPTIONS
  -a, --app=app        (required) app to run command against
  -r, --remote=remote  git remote of app to use

See code: src/commands/ps/autoscale/disable.ts

heroku ps:autoscale:enable

enable web dyno autoscaling

USAGE
  $ heroku ps:autoscale:enable

OPTIONS
  -a, --app=app        (required) app to run command against
  -r, --remote=remote  git remote of app to use
  --max=max            (required) maximum number of dynos
  --min=min            (required) minimum number of dynos
  --notifications      receive email notifications when the max dyno limit is reached
  --p95=p95            desired p95 response time

See code: src/commands/ps/autoscale/enable.ts

heroku regions

list available regions for deployment

USAGE
  $ heroku regions

OPTIONS
  --common   show regions for common runtime
  --json     output in json format
  --private  show regions for private spaces

See code: src/commands/regions.ts