fix(portal-api): default rethinkdb host to localhost

This commit is contained in:
Sérgio Ramos 2017-08-21 16:52:57 +01:00
parent 291a771bd9
commit 663bc9be9d
1 changed files with 3 additions and 1 deletions

View File

@ -15,7 +15,9 @@ const internals = {
namespace: process.env.NAMESPACE ? `/${process.env.NAMESPACE}` : '',
defaults: {
data: {
db: {}
db: {
host: 'localhost'
}
},
watch: {
url: process.env.SDC_URL,