var api = new ParseServer({
databaseURI: 'mongodb://localhost:27017/meetupsParseApp',
appId: 'yourAppId',
masterKey: 'yourMasterKey',
cloud: './cloud.js',
serverURL: 'http://localhost:1337/parse',
verifyUserEmails: true,
publicServerURL: 'http://my-site.com/parse',
emailAdapter: {
module: 'parse-server-simple-mailgun-adapter',
options: {
fromAddress: '
[email protected]',
domain: 'mailgun-domain',
apiKey: 'mailgun-key',
}
}
});