diff options
author | mh <mh@immerda.ch> | 2013-12-05 09:53:51 +0100 |
---|---|---|
committer | mh <mh@immerda.ch> | 2013-12-05 09:53:51 +0100 |
commit | f7a31af7c4c44ec11ff1fc61c466c4476e9f093c (patch) | |
tree | 974c27c8289cca03c294cd94db266e332d13f1bb /templates/master | |
parent | e968708b7ad8420453baf085862edc2c92b52c9b (diff) |
make it possible to consume an external database
Diffstat (limited to 'templates/master')
-rw-r--r-- | templates/master/dashboard/database.yml.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/master/dashboard/database.yml.erb b/templates/master/dashboard/database.yml.erb index f871e72..5c39db5 100644 --- a/templates/master/dashboard/database.yml.erb +++ b/templates/master/dashboard/database.yml.erb @@ -1,8 +1,8 @@ production: adapter: mysql database: 'dashboard' - host: '127.0.0.1' + host: '<%= @mysql_host %>' username: 'dashboard' - password: '<%= mysql_password %>' + password: '<%= @mysql_password %>' encoding: utf8 |