Skip to content

Instantly share code, notes, and snippets.

@yurikoval
Last active August 29, 2015 14:06
Show Gist options
  • Select an option

  • Save yurikoval/d790a704f52cbd625ce9 to your computer and use it in GitHub Desktop.

Select an option

Save yurikoval/d790a704f52cbd625ce9 to your computer and use it in GitHub Desktop.
Universal Rails database.yml
development: &development
adapter: postgresql
database: <%= Rails.application.class.parent_name.underscore %>_development
host: localhost
pool: 5
timeout: 5000
test:
<<: *development
database: <%= Rails.application.class.parent_name.underscore %>_test
production:
<<: *development
database: <%= Rails.application.class.parent_name.underscore %>_production
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment