Merge pull request #271 from ParsePlatform/no-default-master-key

Remove default master key.
This commit is contained in:
Drew
2016-02-05 14:48:29 -08:00

View File

@@ -60,7 +60,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
});