Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
serverURL should be ‘http://localhost:1337/parse' rather than
‘http://localhost:1337'
  • Loading branch information
tsanthosh committed Mar 14, 2016
1 parent b71c015 commit 09fc27a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ var api = new ParseServer({
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!
serverURL: process.env.SERVER_URL || 'http://localhost:1337' // Don't forget to change to https if needed
serverURL: process.env.SERVER_URL || 'http://localhost:1337/parse' // 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:
Expand Down

0 comments on commit 09fc27a

Please sign in to comment.