Skip to content

Commit 1291f70

Browse files
sbalayflovilmart
authored andcommitted
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.
1 parent 26df509 commit 1291f70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ cat > ./config.json << EOF
103103
"masterKey": "$MASTER_KEY",
104104
"appName": "$APP_NAME",
105105
"cloud": "./cloud/main",
106-
"mongodbURI": "$MONGODB_URI"
106+
"databaseURI": "$MONGODB_URI"
107107
}
108108
EOF
109109
echo "${CHECK} Created config.json"

0 commit comments

Comments
 (0)