Skip to content

Commit

Permalink
Added sample database config
Browse files Browse the repository at this point in the history
  • Loading branch information
Rubén Salinas committed Jan 18, 2014
1 parent 7437f67 commit 725d0f9
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions config/database.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# 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
development:
adapter: postgresql
encoding: utf8
reconnect: false
database: database
pool: 5
username: dev_user
password: dev_password
host: dev_host

test: &test
adapter: postgresql
encoding: utf8
reconnect: false
database: agilesoft_test
pool: 5
username: test_user
password: test_password
host: test_host
cucumber:
<<: *test

0 comments on commit 725d0f9

Please sign in to comment.