NAME

Mojolicious::Command::deploy::heroku - Deploy to Heroku

USAGE

script/my_app deploy heroku [OPTIONS]

  # Create new app with randomly selected name and deploy
  script/my_app deploy heroku --create

  # Create new app with randomly selected name and specified api key
  script/my_app deploy heroku --create --api-key 123412341234...

  # Deploy app (new or existing) with specified name
  script/my_app deploy heroku --name happy-cloud-1234

These options are available:
  -n, --appname <name>      Specify app for deployment
  -a, --api-key <api_key>   Heroku API key (read from ~/.heroku/credentials by default).
  -c, --create              Create a new Heroku app
  -v, --verbose             Verbose output (heroku response, git output)
  -h, --help                This message

DESCRIPTION

Mojolicious::Command::deploy::heroku deploys a Mojolicious app to Heroku.

*NOTE* Currently works only on *nix systems.

WORKFLOW

1) Heroku Service

https://api.heroku.com/signup

2) Generate Mojolicious app
mojo generate lite_app hello
3) Deploy
./hello deploy heroku --create

SEE ALSO

http://heroku.com/, http://mojolicio.us

SOURCE

http://github.com/tempire/mojolicious-command-deploy-heroku

VERSION

0.02

AUTHOR

Glen Hinkle tempire@cpan.org