From 8f346df3f359470fcdf04114a8d5ceeaf72c6d04 Mon Sep 17 00:00:00 2001 From: Drew Date: Fri, 5 Feb 2016 13:42:15 -0800 Subject: [PATCH] Remove default master key. If there is a default master key, people will inevitably use it. And that would be bad. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index edfecea608..ffde5cc897 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ var api = new ParseServer({ databaseURI: 'mongodb://localhost:27017/dev', cloud: '/home/myApp/cloud/main.js', // Provide an absolute path appId: 'myAppId', - masterKey: 'mySecretMasterKey', + masterKey: '', //Add your master key here. Keep it secret! fileKey: 'optionalFileKey', serverURL: 'http://localhost:' + port + '/parse' // Don't forget to change to https if needed });