-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
36 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,5 +14,3 @@ capybara-*.html | |
**.orig | ||
rerun.txt | ||
pickle-email-*.html | ||
|
||
/config/database.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# MySQL (default setup). Versions 4.1 and 5.0 are recommended. | ||
# | ||
# Install the MySQL driver: | ||
# gem install mysql | ||
# On MacOS X: | ||
# gem install mysql -- --include=/usr/local/lib | ||
# On Windows: | ||
# gem install mysql | ||
# Choose the win32 build. | ||
# Install MySQL and put its /bin directory on your path. | ||
# | ||
# And be sure to use new-style password hashing: | ||
# http://dev.mysql.com/doc/refman/5.0/en/old-client.html | ||
development: | ||
adapter: mysql2 | ||
database: toy_development | ||
username: root | ||
password: | ||
socket: /tmp/mysql.sock | ||
|
||
# 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: mysql2 | ||
database: toy_test | ||
username: root | ||
password: | ||
socket: /tmp/mysql.sock | ||
|
||
production: | ||
adapter: mysql2 | ||
database: toy_production | ||
username: root | ||
password: | ||
socket: /tmp/mysql.sock |