Skip to content

Instantly share code, notes, and snippets.

@tobias
Forked from sfalsin/database.yml
Created January 24, 2012 13:34
Show Gist options
  • Save tobias/1670194 to your computer and use it in GitHub Desktop.
Save tobias/1670194 to your computer and use it in GitHub Desktop.
Sfalsin Database.yml
# SQLite version 3.x
# gem install sqlite3
#
# Ensure the SQLite 3 gem is defined in your Gemfile
# gem 'sqlite3'
development:
adapter: jdbcmysql
xa: false
encoding: utf8
database: *****
host: *********
username: ****
password: *******
port: 3306
# 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:
adapter: jdbcmysql
xa: false
encoding: utf8
database: *****
host: *********
pool: 5
username: ****
password: *******
port: 3306
production:
adapter: jdbcmysql
xa: false
encoding: utf8
database: *****
pool: 100
host: *********
username: ****
password: *******
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment