We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06d4891 commit 691544bCopy full SHA for 691544b
index.js
@@ -30,6 +30,10 @@ app.use(mountPath, api);
30
app.get('/', function(req, res) {
31
res.status(200).send('I dream of being a web site.');
32
});
33
+ // If you are migrating a webapp hosted on domain.parseapp.com:
34
+ // Remove statement above serving the 200 status (app.get('/ function()});
35
+ // Uncomment app.use below and set the absolute path for serving files in the /public dir
36
+ // app.use(express.static(__dirname + '/public'));
37
38
var port = process.env.PORT || 1337;
39
app.listen(port, function() {
0 commit comments