-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
47 lines (37 loc) · 1.6 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
'use strict';
const express = require('express');
const ParseServer = require('parse-server').ParseServer;
const path = require('path');
const config = require('./configs/config');
const databaseUri = process.env.DATABASE_URI ||
process.env.MONGODB_URI ||
config.databaseUri;
if (!databaseUri) {
console.log('DATABASE_URI not specified, falling back to localhost.');
}
const api = new ParseServer({
databaseURI: databaseUri || 'mongodb://localhost:27017/dev',
cloud: process.env.CLOUD_CODE_MAIN || config.cloudCode,
appId: process.env.APP_ID || config.appId,
masterKey: process.env.MASTER_KEY || config.masterKey, //Add your master key here. Keep it secret!
serverURL: process.env.SERVER_URL || config.serverURL, // Don't forget to change to https if needed
liveQuery: config.liveQuery,
allowClientClassCreation: config.allowClientClassCreation,
enableAnonymousUsers: config.enableAnonymousUsers
});
const app = express();
// Serve static assets from the /public folder
app.use('/public', express.static(path.join(__dirname, '/public')));
// Serve the Parse API on the /parse URL prefix
const mountPath = process.env.PARSE_MOUNT || config.mountPath;
app.use(mountPath, api);
app.get('/', function(req, res) {
res.sendFile(path.join(__dirname, '/public/index.html'))
});
const port = process.env.PORT || config.port;
const httpServer = require('http').createServer(app);
httpServer.listen(port, function() {
console.log('spice running on port ' + port + '.');
});
// This will enable the Live Query real-time server
ParseServer.createLiveQueryServer(httpServer);