From 1291f70a16ac84a59be8d8cc82a9057b8485a960 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Balay?= Date: Tue, 10 May 2016 19:13:06 -0300 Subject: [PATCH] Fix malformed config.json in bootstrap.sh The bootstrap bash script generates a wrong config.json file. Instead of having a databaseURI property, it has a mongodbURI prop. --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 25f9199b..4fb2fab3 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -103,7 +103,7 @@ cat > ./config.json << EOF "masterKey": "$MASTER_KEY", "appName": "$APP_NAME", "cloud": "./cloud/main", - "mongodbURI": "$MONGODB_URI" + "databaseURI": "$MONGODB_URI" } EOF echo "${CHECK} Created config.json"