Skip to content

Instantly share code, notes, and snippets.

@youanden
Created October 11, 2013 06:15
Show Gist options
  • Save youanden/6930291 to your computer and use it in GitHub Desktop.
Save youanden/6930291 to your computer and use it in GitHub Desktop.
database.yml example for eplus
# gem 'mysql2'
development: &default
adapter: mysql2
database: app_db_dev
encoding: utf8
collation: utf8_general_ci
username: app_user
password: app_password
test:
<<: *default
database: app_db_test
production:
<<: *default
database: app_db_production
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment