ParseServer config question

I have some options in configuring ParseServer that I don’t know how to configure?

The code looks like this:

var express = require('express');
var ParseServer = require('parse-server').ParseServer;
var app = express();

var api = new ParseServer({
  databaseURI: 'mongodb://localhost:27017/dev', // Connection string for your MongoDB database
  cloud: './cloud/main.js', // Path to your Cloud Code
  appId: 'myAppId',
  masterKey: 'myMasterKey', // Keep this key secret!
  fileKey: 'optionalFileKey',
  serverURL: 'http://localhost:1337/parse' // Don't forget to change to https if needed
});

// Serve the Parse API on the /parse URL prefix
app.use('/parse', api);

app.listen(1337, function() {
  console.log('parse-server-example running on port 1337.');
});

Not sure what the correct configuration for these two parameters should be?

Where can I get it? databaseURI and cloud

  databaseURI: 'mongodb://localhost:27017/dev', 
  cloud: './cloud/main.js', 

I think that you have to install a mongo db database locally that you can use there, and for cloud code, it just points to a file that contains js code, it could be an empty file initially

Okay, I’ll try again