Skip to content

Instantly share code, notes, and snippets.

@hendra
Created December 8, 2013 11:43
Show Gist options
  • Save hendra/7856360 to your computer and use it in GitHub Desktop.
Save hendra/7856360 to your computer and use it in GitHub Desktop.
Database configuration for MySQL
# MySQL. Versions 4.1 and 5.0 are recommended.
#
# Install the MYSQL driver
# gem install mysql2
#
# Ensure the MySQL gem is defined in your Gemfile
# gem 'mysql2'
#
# And be sure to use new-style password hashing:
# http://dev.mysql.com/doc/refman/5.0/en/old-client.html
default: &default
adapter: mysql2
encoding: utf8
pool: 5
username: DB_USERNAME # Change this with your db username
password: DB_PASSWORD # Change this with your db password
socket: /tmp/mysql.sock
development:
<<: *default
database: DB_NAME # Change this with your development db name
# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
test:
<<: *default
database: DB_NAME # Change this with your test db name
production:
<<: *default
database: DB_NAME # Change this with your production db name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment