Skip to content

Instantly share code, notes, and snippets.

@dekom
Created March 7, 2012 23:42
Show Gist options
  • Save dekom/1997320 to your computer and use it in GitHub Desktop.
Save dekom/1997320 to your computer and use it in GitHub Desktop.
Enki Setup
# Configuration options for your blog - customise to taste
# This file contains no secret information, so can be stored in source control (unlike database.yml)
title: <Blog Title>
url: <Blog URL>
author:
name: <Your Name> # For copyright notice and ATOM feeds
email: <Your Email> # Exception emails will go here, and it is used in ATOM feeds
open_id: # These are used to login to the admin area
- <Your open_id url> # Mine is http://dekom.myopenid.com
# Delete the following section if your site will not be acting as an OpenID delegate (http://wiki.openid.net/Delegation)
# If you're deploying with mongrel, make sure you read http://rhnh.net/2008/04/13/nginx-openid-delegation-and-yadis
open_id_delegation:
group :production do
gem 'pg'
end
$ RAILS_ENV=production bundle exec rake assets:precompile
ActionMailer::Base.smtp_settings = {
address: 'smtp.gmail.com',
port: 587,
authentication: 'plain',
user_name: '<email>'
enable_starttls_auto: true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment