Skip to content

Run Huginn for free on OpenShift

cantino edited this page Nov 3, 2014 · 3 revisions

Deploying on Openshift

  1. Create an account at http://openshift.redhat.com/

  2. Install the rhc command line tool (could be as simple as gem install rhc) and then run rhc setup.

  3. Run our OpenShift setup script!

    bin/setup_openshift
    
  4. Optionally, setup Pingdom to ping your app so that it doesn't spin down and keeps doing background processes.

  5. Optionally, setup outbound email. We suggest using Gmail. See the 'Outgoing email settings' section in .env.example. You'll need to set those environment variables in OpenShift using rhc env set VARIABLE=VALUE. Something like:

    rhc env set SMTP_DOMAIN="gmail.com" SMTP_USER_NAME="[email protected]" SMTP_PASSWORD="password" SMTP_SERVER="smtp.gmail.com" SMTP_PORT=587 SMTP_AUTHENTICATION=plain SMTP_ENABLE_STARTTLS_AUTO=true EMAIL_FROM_ADDRESS="[email protected]"
    
Clone this wiki locally