diff options
| author | Marc Florisson | 2014-02-25 11:13:06 +0100 | 
|---|---|---|
| committer | Marc Florisson | 2014-02-25 11:13:06 +0100 | 
| commit | afe8b63ed4cfe690c271cba160730e8fa3b32249 (patch) | |
| tree | 595c2b37ea297770bbba81fd5391511c23b4d7e3 | |
| parent | 2f9f5562924d99b40ee0a7be553c7aa6f6641964 (diff) | |
| download | chouette-core-afe8b63ed4cfe690c271cba160730e8fa3b32249.tar.bz2 | |
add explicit host to database.yml for development and test
| -rw-r--r-- | config/database.yml | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/config/database.yml b/config/database.yml index 9466851ef..adec960b4 100644 --- a/config/database.yml +++ b/config/database.yml @@ -8,6 +8,7 @@ development:    adapter: <%= RUBY_PLATFORM == "java" ? "jdbcpostgresql" : "postgresql" %>    database: chouette_dev    encoding: utf8 +  host: localhost    username: chouette    password: chouette @@ -18,6 +19,7 @@ test:    adapter: <%= RUBY_PLATFORM == "java" ? "jdbcpostgresql" : "postgresql" %>    database: chouette_test    encoding: utf8 +  host: localhost    username: chouette    password: chouette @@ -27,4 +29,4 @@ production:    encoding: utf8    host: localhost    username: chouette -  password: chouette    
\ No newline at end of file +  password: chouette | 
