Skip to content

Commit 09fc27a

Browse files
committed
Typo
serverURL should be ‘http://localhost:1337/parse' rather than ‘http://localhost:1337'
1 parent b71c015 commit 09fc27a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ var api = new ParseServer({
1515
cloud: process.env.CLOUD_CODE_MAIN || __dirname + '/cloud/main.js',
1616
appId: process.env.APP_ID || 'myAppId',
1717
masterKey: process.env.MASTER_KEY || '', //Add your master key here. Keep it secret!
18-
serverURL: process.env.SERVER_URL || 'http://localhost:1337' // Don't forget to change to https if needed
18+
serverURL: process.env.SERVER_URL || 'http://localhost:1337/parse' // Don't forget to change to https if needed
1919
});
2020
// Client-keys like the javascript key or the .NET key are not necessary with parse-server
2121
// If you wish you require them, you can set them as options in the initialization above:

0 commit comments

Comments
 (0)