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.
This commit is contained in:
Sebastián Balay
2016-05-10 19:13:06 -03:00
committed by Florent Vilmart
parent 26df50924b
commit 1291f70a16

View File

@@ -103,7 +103,7 @@ cat > ./config.json << EOF
"masterKey": "$MASTER_KEY", "masterKey": "$MASTER_KEY",
"appName": "$APP_NAME", "appName": "$APP_NAME",
"cloud": "./cloud/main", "cloud": "./cloud/main",
"mongodbURI": "$MONGODB_URI" "databaseURI": "$MONGODB_URI"
} }
EOF EOF
echo "${CHECK} Created config.json" echo "${CHECK} Created config.json"