|
@@ -14,7 +14,8 @@ var api = new ParseServer({
|
|
|
databaseURI: databaseUri || 'mongodb://localhost:27017/dev',
|
|
|
cloud: process.env.CLOUD_CODE_MAIN || __dirname + '/cloud/main.js',
|
|
|
appId: process.env.APP_ID || 'myAppId',
|
|
|
- masterKey: process.env.MASTER_KEY || '' //Add your master key here. Keep it secret!
|
|
|
+ masterKey: process.env.MASTER_KEY || '', //Add your master key here. Keep it secret!
|
|
|
+ serverUrl: process.env.SERVER_URL || 'http://localhost:1337' // Don't forget to change to https if needed
|
|
|
});
|
|
|
// Client-keys like the javascript key or the .NET key are not necessary with parse-server
|
|
|
// If you wish you require them, you can set them as options in the initialization above:
|