Guest User

Untitled

a guest
Jun 22nd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.62 KB | None | 0 0
  1. heroku help
  2.  
  3. === General Commands
  4.  
  5. help # show this usage
  6. version # show the gem version
  7.  
  8. list # list your apps
  9. create [<name>] # create a new app
  10.  
  11. keys # show your user's public keys
  12. keys:add [<path to keyfile>] # add a public key
  13. keys:remove <keyname> # remove a key by name (user@host)
  14. keys:clear # remove all keys
  15.  
  16. === App Commands (execute inside a checkout directory, or use --app <appname>)
  17.  
  18. info # show app info, like web url and git repo
  19. open # open the app in a web browser
  20. rename <newname> # rename the app
  21.  
  22. sharing:add <email> # add a collaborator
  23. sharing:remove <email> # remove a collaborator
  24. sharing:transfer <email> # transfers the app ownership
  25.  
  26. domains:add <domain> # add a custom domain name
  27. domains:remove <domain> # remove a custom domain name
  28. domains:clear # remove all custom domains
  29.  
  30. rake <command> # remotely execute a rake command
  31. console <command> # remotely execute a single console command
  32. console # start an interactive console to the remote app
  33.  
  34. restart # restart app servers
  35. logs # fetch recent log output for debugging
  36. logs:cron # fetch cron log output
  37.  
  38. config # display the app's config vars (environment)
  39. config:add key=val [...] # add one or more config vars
  40. config:remove key [...] # remove one or more config vars
  41. config:clear # clear user-set vars and reset to default
  42.  
  43. db:pull [<database_url>] # pull the app's database into a local database
  44. db:push [<database_url>] # push a local database into the app's remote database
  45. db:reset # reset the database for the app
  46.  
  47. bundles # list bundles for the app
  48. bundles:capture [<bundle>] # capture a bundle of the app's code and data
  49. bundles:download # download most recent app bundle as a tarball
  50. bundles:download <bundle> # download the named bundle
  51. bundles:animate <bundle> # animate a bundle into a new app
  52. bundles:destroy <bundle> # destroy the named bundle
  53.  
  54. addons # list addons
  55. addons:add name [...] # install one or more addons
  56. addons:remove name [...] # uninstall one or more addons
  57. addons:clear # uninstall all addons
  58.  
  59. destroy # destroy the app permanently
Add Comment
Please, Sign In to add comment