-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Run Huginn for free on OpenShift
Andrew Cantino edited this page Apr 30, 2015
·
3 revisions
Note: OpenShift does not support the current version of Huginn. See this issue.
-
Create an account at http://openshift.redhat.com/
-
Install the rhc command line tool (could be as simple as
gem install rhc
) and then runrhc setup
. -
Checkout the openshift Huginn branch.
-
Run our OpenShift setup script! (Currently brittle or broken.)
bin/setup_openshift
-
Optionally, setup Pingdom to ping your app so that it doesn't spin down and keeps doing background processes.
-
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]"