Created
March 7, 2012 23:42
-
-
Save dekom/1997320 to your computer and use it in GitHub Desktop.
Enki Setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
group :production do | |
gem 'pg' | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ RAILS_ENV=production bundle exec rake assets:precompile |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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