Skip to content

Commit

Permalink
Put database.yml into gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
lgn21st committed Mar 4, 2014
1 parent d0dc800 commit eb16126
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
/log/*.pid
/tmp

# Ignore all config files
/config/database.yml

# Ignore ctags
.tags

Expand Down
4 changes: 2 additions & 2 deletions config/database.yml → config/database.yml.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ development: &defaults
adapter: mysql2
database: peatio_development
username: root
password: password
password:

test:
<<: *defaults
database: peatio_test

production:
<<: *defaults
database: peatio_production
database: peatio_development

0 comments on commit eb16126

Please sign in to comment.