-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Run Huginn for free on OpenShift
cantino edited this page Nov 3, 2014
·
3 revisions
-
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
. -
Run our OpenShift setup script!
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]"