Skip to content

Commit

Permalink
Merge pull request yongjhih#26 from acinader/correct-default-server-url
Browse files Browse the repository at this point in the history
The default server url needs parse at the end of it to work...
  • Loading branch information
yongjhih committed Apr 9, 2016
2 parents a6b5afc + d64a4d9 commit ec856e1
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 @@ -53,7 +53,7 @@ if ((gcmId && gcmKey) || (productionPfx && productionBundleId) || (devBundleId &
};
}

var serverURL = process.env.SERVER_URL || 'http://localhost:1337'; // Don't forget to change to https if needed
var serverURL = process.env.SERVER_URL || 'http://localhost:1337/parse'; // Don't forget to change to https if needed

var api = new ParseServer({
databaseURI: databaseUri || 'mongodb://localhost:27017/dev',
Expand Down

0 comments on commit ec856e1

Please sign in to comment.